Remove tic80 support
[deliverable/binutils-gdb.git] / libiberty / vfork.c
index 7df7a22626066bee874fee80ef350a882c6a0719..eb4ff622b44f5ba6100b64f8ccf1d5880b670c52 100644 (file)
@@ -3,7 +3,7 @@
 
 /*
 
-@deftypefn Supplemental int vfork ()
+@deftypefn Supplemental int vfork (void)
 
 Emulates @code{vfork} by calling @code{fork} and returning its value.
 
@@ -13,10 +13,10 @@ Emulates @code{vfork} by calling @code{fork} and returning its value.
 
 #include "ansidecl.h"
 
-extern int fork PARAMS ((void));
+extern int fork (void);
 
 int
-vfork ()
+vfork (void)
 {
   return (fork ());
 }
This page took 0.023436 seconds and 4 git commands to generate.