From 4e766ab43ca45164c6231fe99f2f28b5f1e7b549 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 23 Oct 2000 23:35:07 +0000 Subject: Forgot a few things... --- include/unistd.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include') diff --git a/include/unistd.h b/include/unistd.h index a070b03df..2fc3fac32 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -102,6 +102,14 @@ extern __gid_t getgid __P ((void)); /* Get the effective group ID of the calling process. */ extern __gid_t getegid __P ((void)); +/* Set the real user ID of the calling process to RUID, + and the effective user ID of the calling process to EUID. */ +extern int setreuid __P ((__uid_t __ruid, __uid_t __euid)); + +/* Set the real group ID of the calling process to RGID, + and the effective group ID of the calling process to EGID. */ +extern int setregid __P ((__gid_t __rgid, __gid_t __egid)); + /* If SIZE is zero, return the number of supplementary groups the calling process is in. Otherwise, fill in the group IDs of its supplementary groups in LIST and return the number written. */ -- cgit v1.2.3