From f30c0309712945258e6bcaa485cc6e3a8494e3b9 Mon Sep 17 00:00:00 2001 From: ewt Date: Mon, 30 Sep 1996 16:32:37 +0000 Subject: [PATCH] Initial revision CVS patchset: 1080 CVS date: 1996/09/30 16:32:37 --- misc/fakefork.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 misc/fakefork.c diff --git a/misc/fakefork.c b/misc/fakefork.c new file mode 100644 index 0000000..74d94ba --- /dev/null +++ b/misc/fakefork.c @@ -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 + +int fork() { + return vfork(); +} -- 2.7.4