]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libiberty/vfork.c
ternary.h: Don't use PARAMS anymore.
[thirdparty/gcc.git] / libiberty / vfork.c
index 4aa5c21d42714793fab1de8a42180f66a7f03af9..eb4ff622b44f5ba6100b64f8ccf1d5880b670c52 100644 (file)
@@ -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 ());
 }