1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-01 08:17:38 +00:00

(vfork): Move this outside the USG conditional.

This commit is contained in:
Richard M. Stallman 1993-08-03 02:40:31 +00:00
parent 43549f18f5
commit 0e18d8ef78

View File

@ -2579,6 +2579,19 @@ sys_write (fildes, buf, nbyte)
#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 @@ rename (from, to)
#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. */