source: rtems/cpukit/posix/src/fork.c @ 188c82b

4.104.114.84.95
Last change on this file since 188c82b was 97149ba, checked in by Joel Sherrill <joel.sherrill@…>, on 09/25/98 at 13:17:32

Added ENOSYS stubs for a number of process routines.

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