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