source: rtems/cpukit/posix/src/waitpid.c @ a29d2e7

4.104.114.84.95
Last change on this file since a29d2e7 was 874297f3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/16/04 at 10:01:03

Remove stray white spaces.

  • Property mode set to 100644
File size: 260 bytes
Line 
1/*
2 *  waitpid() - POSIX 1003.1 3.2.1
3 *
4 *  $Id$
5 */
6
7#if HAVE_CONFIG_H
8#include "config.h"
9#endif
10
11#include <sys/types.h>
12#include <sys/wait.h>
13#include <errno.h>
14
15int waitpid(
16  pid_t pid,
17  int *stat_loc,
18  int options
19)
20{
21  errno = ENOSYS;
22  return -1;
23}
Note: See TracBrowser for help on using the repository browser.