xref: /original-bsd/lib/libc/compat-43/setruid.c (revision c3e32dec)
1 /*
2  * Copyright (c) 1983, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #if defined(LIBC_SCCS) && !defined(lint)
9 static char sccsid[] = "@(#)setruid.c	8.1 (Berkeley) 06/02/93";
10 #endif /* LIBC_SCCS and not lint */
11 
12 #include <unistd.h>
13 
14 int
15 #ifdef __STDC__
16 setruid(uid_t ruid)
17 #else
18 setruid(ruid)
19 	int ruid;
20 #endif
21 {
22 
23 	return (setreuid(ruid, -1));
24 }
25