aboutsummaryrefslogtreecommitdiff
path: root/posix/setpgid.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/setpgid.c')
-rw-r--r--posix/setpgid.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/posix/setpgid.c b/posix/setpgid.c
index 7289148..a01af84 100644
--- a/posix/setpgid.c
+++ b/posix/setpgid.c
@@ -22,9 +22,7 @@
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;
- int pgid;
+__setpgid (int pid, int pgid)
{
__set_errno (ENOSYS);
return -1;