summaryrefslogtreecommitdiff
path: root/misc/setreuid.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/setreuid.c')
-rw-r--r--misc/setreuid.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/misc/setreuid.c b/misc/setreuid.c
index a6290f0eeb..d7e35cf9c6 100644
--- a/misc/setreuid.c
+++ b/misc/setreuid.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 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
@@ -22,9 +22,7 @@
/* Set the real user ID of the calling process to RUID,
and the effective user ID of the calling process to EUID. */
int
-__setreuid (effective_uid, real_uid)
- uid_t effective_uid;
- uid_t real_uid;
+__setreuid (uid_t effective_uid, uid_t real_uid)
{
__set_errno (ENOSYS);
return -1;