summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/fork.c
blob: 1d67da76946bd8cd1f511a5be4ea6bbf297b781d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 
 *  fork() - POSIX 1003.1b 3.1.1
 *
 *  $Id$
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <sys/types.h>
#include <errno.h>

int fork( void )
{
  errno = ENOSYS;
  return -1;
}