Initial revision
authorewt <devnull@localhost>
Mon, 30 Sep 1996 16:32:37 +0000 (16:32 +0000)
committerewt <devnull@localhost>
Mon, 30 Sep 1996 16:32:37 +0000 (16:32 +0000)
CVS patchset: 1080
CVS date: 1996/09/30 16:32:37

misc/fakefork.c [new file with mode: 0644]

diff --git a/misc/fakefork.c b/misc/fakefork.c
new file mode 100644 (file)
index 0000000..74d94ba
--- /dev/null
@@ -0,0 +1,8 @@
+/* This is really, really dumb. But AmigaOS gives us vfork(), but not
+   fork() and this should make things work despite their brokenness */
+
+#include <unistd.h>
+
+int fork() {
+    return vfork();
+}