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