comparison src/sysdep.c @ 27709:21ba0999191f

(vfork) [!HAVE_VFORK]: Removed.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 16 Feb 2000 00:34:39 +0000
parents b904070c3d8b
children db5a4af9fafd
comparison
equal deleted inserted replaced
27708:6df9b9ee9af9 27709:21ba0999191f
3289 bytes_written += rtnval; 3289 bytes_written += rtnval;
3290 } 3290 }
3291 return (bytes_written); 3291 return (bytes_written);
3292 } 3292 }
3293 3293
3294 #ifndef HAVE_VFORK
3295 #ifndef WINDOWSNT
3296 /*
3297 * Substitute fork for vfork on USG flavors.
3298 */
3299
3300 VFORK_RETURN_TYPE
3301 vfork ()
3302 {
3303 return (fork ());
3304 }
3305 #endif /* not WINDOWSNT */
3306 #endif /* not HAVE_VFORK */
3307
3308 #ifdef USG 3294 #ifdef USG
3309 /* 3295 /*
3310 * All of the following are for USG. 3296 * All of the following are for USG.
3311 * 3297 *
3312 * On USG systems the system calls are INTERRUPTIBLE by signals 3298 * On USG systems the system calls are INTERRUPTIBLE by signals