source: rtems/cpukit/posix/src/waitpid.c @ 811fae1

4.104.114.84.95
Last change on this file since 811fae1 was cb646cb9, checked in by Joel Sherrill <joel.sherrill@…>, on 09/27/98 at 16:37:16

New files.

  • Property mode set to 100644
File size: 182 bytes
Line 
1/*
2 *  wait() - POSIX 1003.1b 3.2.1
3 *
4 *  $Id$
5 */
6
7#include <sys/types.h>
8#include <sys/wait.h>
9#include <errno.h>
10
11int wait(
12  int *stat_loc
13)
14{
15  errno = ENOSYS;
16  return -1;
17}
Note: See TracBrowser for help on using the repository browser.