summaryrefslogtreecommitdiff
path: root/libiberty/vfork.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/vfork.c')
-rw-r--r--libiberty/vfork.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libiberty/vfork.c b/libiberty/vfork.c
deleted file mode 100644
index 5e877210081..00000000000
--- a/libiberty/vfork.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* Emulate vfork using just plain fork, for systems without a real vfork.
- This function is in the public domain. */
-
-#include "ansidecl.h"
-
-extern int fork PARAMS ((void));
-
-int
-vfork ()
-{
- return (fork ());
-}