source: rtems/c/src/exec/posix/src/waitpid.c @ df49c60

4.104.114.84.95
Last change on this file since df49c60 was df49c60, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 15:00:15

Merged from 4.5.0-beta3a

  • Property mode set to 100644
File size: 213 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 waitpid(
12  pid_t pid,
13  int *stat_loc,
14  int options
15)
16{
17  errno = ENOSYS;
18  return -1;
19}
Note: See TracBrowser for help on using the repository browser.