diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-25 21:22:12 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-25 21:22:12 +0000 |
commit | d1855e95b1a1fb33e615bb3288254469784f525d (patch) | |
tree | 69da65e519f85678bdc6b107d57d0182f512be21 /lib/libc/compat-43/setruid.c | |
parent | cf0e1677c426e0539c888215b099095102d48258 (diff) |
Add prototypes for internal functions
Diffstat (limited to 'lib/libc/compat-43/setruid.c')
-rw-r--r-- | lib/libc/compat-43/setruid.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/compat-43/setruid.c b/lib/libc/compat-43/setruid.c index 63818623ecf..f512b0f0a02 100644 --- a/lib/libc/compat-43/setruid.c +++ b/lib/libc/compat-43/setruid.c @@ -33,7 +33,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)setruid.c 5.5 (Berkeley) 2/23/91";*/ -static char *rcsid = "$Id: setruid.c,v 1.1 1995/10/18 08:41:46 deraadt Exp $"; +static char *rcsid = "$Id: setruid.c,v 1.2 1996/03/25 21:22:11 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -41,12 +41,14 @@ static char *rcsid = "$Id: setruid.c,v 1.1 1995/10/18 08:41:46 deraadt Exp $"; __warn_references(setruid, "warning: this program uses setruid(), which is deprecated."); +extern int __setreuid __P((uid_t, uid_t)); + int #ifdef __STDC__ setruid(uid_t ruid) #else setruid(ruid) - int ruid; + uid_t ruid; #endif { return (__setreuid(ruid, -1)); |