summaryrefslogblamecommitdiffstats
path: root/cpukit/posix/src/wait.c
blob: 5bfa8ce9433ea40e897b5151cc182040fbf5997b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
  




                                   



                   










                      
/*
 *  waitpid() - POSIX 1003.1b 3.2.1
 *
 *  $Id$
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

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

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