about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/sysv4/setpgid.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-07-27 05:10:43 +0000
committerUlrich Drepper <drepper@redhat.com>1999-07-27 05:10:43 +0000
commit650364fa29479ad5926870f03083854cdcad3810 (patch)
tree363bb2137b3a09b000f98a437963c7a3145d40ba /sysdeps/unix/sysv/sysv4/setpgid.c
parentb7375f6c40e6428992790d10279c180641f9dc21 (diff)
downloadglibc-650364fa29479ad5926870f03083854cdcad3810.tar.gz
glibc-650364fa29479ad5926870f03083854cdcad3810.tar.xz
glibc-650364fa29479ad5926870f03083854cdcad3810.zip
Update.
	* sysdeps/unix/sysv/sysv4/setsid.c: Correct types.
	* sysdeps/generic/getpgrp.c: Likewise.
	* sysdeps/unix/sysv/sysv4/setpgid.c: Likewise.
	* sysdeps/unix/sysv/sysv4/getpgid.c: Likewise.
	Patch by John Tobey <jtobey@banta-im.com>.
Diffstat (limited to 'sysdeps/unix/sysv/sysv4/setpgid.c')
-rw-r--r--sysdeps/unix/sysv/sysv4/setpgid.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/sysv4/setpgid.c b/sysdeps/unix/sysv/sysv4/setpgid.c
index 46396322d2..d9d3e8f306 100644
--- a/sysdeps/unix/sysv/sysv4/setpgid.c
+++ b/sysdeps/unix/sysv/sysv4/setpgid.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1993, 1995, 1996, 1997, 1999 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
@@ -19,14 +19,14 @@
 #include <errno.h>
 #include <unistd.h>
 
-extern int __pgrpsys __P ((int type, ...));
+extern int __pgrpsys __P ((pid_t type, ...));
 
 /* Set the process group ID of the process matching PID to PGID.
    If PID is zero, the current process's process group ID is set.
    If PGID is zero, the process ID of the process is used.  */
 int
 __setpgid (pid, pgid)
-     int pid, pgid;  /* XXX why not pid_t ? */
+     pid_t pid, pgid;
 {
   return __pgrpsys (5, pid, pgid);
 }