/* * waitpid() - POSIX 1003.1 3.2.1 * * $Id$ */ #if HAVE_CONFIG_H #include "config.h" #endif #include #include #include int waitpid( pid_t pid, int *stat_loc, int options ) { errno = ENOSYS; return -1; }