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