summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/waitpid.c
blob: e367e8707446c6f703cf050aae8316cf448ee7c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* 
 *  waitpid() - POSIX 1003.1 3.2.1
 *
 *  $Id$
 */

#include <sys/types.h>
#include <sys/wait.h>
#include <errno.h>

int waitpid(
  pid_t pid,
  int *stat_loc,
  int options
)
{
  errno = ENOSYS;
  return -1;
}