diff options
Diffstat (limited to 'libiberty/vfork.c')
-rw-r--r-- | libiberty/vfork.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/vfork.c b/libiberty/vfork.c index 4aa5c21..eb4ff62 100644 --- a/libiberty/vfork.c +++ b/libiberty/vfork.c @@ -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 ()); } |