summaryrefslogtreecommitdiff
path: root/fork.c
diff options
context:
space:
mode:
Diffstat (limited to 'fork.c')
-rw-r--r--fork.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fork.c b/fork.c
index 3a25c48..61da545 100644
--- a/fork.c
+++ b/fork.c
@@ -5,12 +5,12 @@
* Implementation of fork() for POSIX threads.
*/
-/* FIXME! */
-#define ENOMEM 0
#include "pthread.h"
#include "implement.h"
+#if 0 /* Pre Bossom */
+
int
pthread_atfork(void (*prepare)(void),
void (*parent)(void),
@@ -139,3 +139,5 @@ fork()
}
#endif /* HAVE_PID_T && HAVE_FORK */
+
+#endif /* Pre Bossom */