summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/Makefile.am2
-rw-r--r--misc/fakefork.c8
2 files changed, 1 insertions, 9 deletions
diff --git a/misc/Makefile.am b/misc/Makefile.am
index 16558258d..77ca504c7 100644
--- a/misc/Makefile.am
+++ b/misc/Makefile.am
@@ -4,7 +4,7 @@ AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_builddir)/include/rpm
AM_CPPFLAGS += -I$(top_srcdir)/misc
EXTRA_DIST = \
- fakefork.c fnmatch.c fnmatch.h \
+ fnmatch.c fnmatch.h \
getmntent.c glob.c glob.h \
stpcpy.c stpncpy.c
diff --git a/misc/fakefork.c b/misc/fakefork.c
deleted file mode 100644
index 2089f28a6..000000000
--- a/misc/fakefork.c
+++ /dev/null
@@ -1,8 +0,0 @@
-/* This is really, really dumb. But AmigaOS gives us vfork(), but not
- fork() and this should make things work despite their brokenness */
-
-#include "system.h"
-
-int fork() {
- return vfork();
-}