summaryrefslogtreecommitdiff
path: root/lib/libc/compat-43/setpgrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/compat-43/setpgrp.c')
-rw-r--r--lib/libc/compat-43/setpgrp.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libc/compat-43/setpgrp.c b/lib/libc/compat-43/setpgrp.c
index cb1d6a71d80..7592e56ea4b 100644
--- a/lib/libc/compat-43/setpgrp.c
+++ b/lib/libc/compat-43/setpgrp.c
@@ -32,19 +32,14 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: setpgrp.c,v 1.3 1997/07/25 20:29:59 mickey Exp $";
+static char *rcsid = "$OpenBSD: setpgrp.c,v 1.4 2002/02/19 19:39:36 millert Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#include <unistd.h>
int
-#ifdef __STDC__
setpgrp(pid_t pid, pid_t pgid)
-#else
-setpgrp(pid, pgid)
- pid_t pid, pgid;
-#endif
{
return(setpgid(pid, pgid));
}