diff options
Diffstat (limited to 'misc/setregid.c')
-rw-r--r-- | misc/setregid.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/misc/setregid.c b/misc/setregid.c index 692bff0105..b3e1bbfd09 100644 --- a/misc/setregid.c +++ b/misc/setregid.c @@ -22,9 +22,7 @@ /* Set the real group ID of the calling process to RGID, and the effective group ID of the calling process to EGID. */ int -__setregid (effective_gid, real_gid) - gid_t effective_gid; - gid_t real_gid; +__setregid (gid_t effective_gid, gid_t real_gid) { __set_errno (ENOSYS); return -1; |