xref: /original-bsd/lib/libc/gen/setuid.c (revision 32d8cbb4)
1 /*
2  * Copyright (c) 1983 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #if defined(LIBC_SCCS) && !defined(lint)
9 static char sccsid[] = "@(#)setuid.c	5.4 (Berkeley) 06/01/90";
10 #endif /* LIBC_SCCS and not lint */
11 
12 /*
13  * Backwards compatible setuid.
14  */
setuid(uid)15 setuid(uid)
16 	int uid;
17 {
18 
19 	return (setreuid(uid, uid));
20 }
21