Replace copyreloc-main.c with copyreloc-main.S
[platform/upstream/binutils.git] / libiberty / vfork.c
index 4aa5c21..eb4ff62 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 ());
 }