]> git.eshelyaron.com Git - emacs.git/commitdiff
(VFORK_RETURN_TYPE): Use int if not already defined.
authorKarl Heuer <kwzh@gnu.org>
Fri, 26 May 1995 22:10:20 +0000 (22:10 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 26 May 1995 22:10:20 +0000 (22:10 +0000)
(vfork): Declare the return type.

src/sysdep.c

index 742582d538228574e44df98d3fea278bcc5e6729..41bbd92c43d9c08620e8ce5cb0c04534ae168ec8 100644 (file)
@@ -191,6 +191,10 @@ struct utimbuf {
 #endif
 #endif
 
+#ifndef VFORK_RETURN_TYPE
+#define VFORK_RETURN_TYPE int
+#endif
+
 /* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits.  */
 #ifndef LPASS8
 #define LPASS8 0
@@ -2935,6 +2939,7 @@ sys_write (fildes, buf, nbyte)
  *      Substitute fork for vfork on USG flavors.
  */
 
+VFORK_RETURN_TYPE
 vfork ()
 {
   return (fork ());