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

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

int wait(
  int *stat_loc
)
{
  errno = ENOSYS;
  return -1;
}