diff options
Diffstat (limited to 'posix/setpgrp.c')
-rw-r--r-- | posix/setpgrp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/setpgrp.c b/posix/setpgrp.c index e3451e13e6..a511e058b9 100644 --- a/posix/setpgrp.c +++ b/posix/setpgrp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998 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 @@ -21,5 +21,5 @@ int setpgrp () { - return setpgid (0, 0); + return __setpgid (0, 0); } |