changeset 4430:ecac48eaacce

(vfork): Move this outside the USG conditional.
author Richard M. Stallman <rms@gnu.org>
date Tue, 03 Aug 1993 02:40:31 +0000
parents 847ef9a62e5d
children 2fe6adb8a82f
files src/sysdep.c
diffstat 1 files changed, 13 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/src/sysdep.c	Tue Aug 03 01:07:55 1993 +0000
+++ b/src/sysdep.c	Tue Aug 03 02:40:31 1993 +0000
@@ -2579,6 +2579,19 @@
 
 #endif /* INTERRUPTIBLE_IO */
 
+#ifndef HAVE_VFORK
+
+/*
+ *	Substitute fork for vfork on USG flavors.
+ */
+
+vfork ()
+{
+  return (fork ());
+}
+
+#endif /* not HAVE_VFORK */
+
 #ifdef USG
 /*
  *	All of the following are for USG.
@@ -2715,19 +2728,6 @@
 
 #endif
 
-#ifndef HAVE_VFORK
-
-/*
- *	Substitute fork for vfork on USG flavors.
- */
-
-vfork ()
-{
-  return (fork ());
-}
-
-#endif /* not HAVE_VFORK */
-
 #ifdef MISSING_UTIMES
 
 /* HPUX (among others) sets HAVE_TIMEVAL but does not implement utimes.  */