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



        



                   



                      



                




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

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

#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;
}