summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/fork.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/fork.c')
-rw-r--r--cpukit/posix/src/fork.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/cpukit/posix/src/fork.c b/cpukit/posix/src/fork.c
deleted file mode 100644
index 11cac91bdb..0000000000
--- a/cpukit/posix/src/fork.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * fork() - POSIX 1003.1b 3.1.1
- *
- * $Id$
- */
-
-#include <sys/types.h>
-#include <errno.h>
-
-int fork( void )
-{
- errno = ENOSYS;
- return -1;
-}