diff options
Diffstat (limited to 'sysdeps/generic/vfork.c')
-rw-r--r-- | sysdeps/generic/vfork.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/vfork.c b/sysdeps/generic/vfork.c index 624f784d37..a1686af0e4 100644 --- a/sysdeps/generic/vfork.c +++ b/sysdeps/generic/vfork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1995, 1997, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -22,7 +22,7 @@ /* If we don't have vfork, fork is close enough. */ __pid_t -__vfork __P ((void)) +__vfork (void) { return __fork (); } |