macro and text revision (-mdoc version 3)
[unix-history] / usr / src / lib / libc / gen / seteuid.c
CommitLineData
b8f253e8
KM
1/*
2 * Copyright (c) 1983 Regents of the University of California.
21fad3ef
KB
3 * All rights reserved.
4 *
269a7923 5 * %sccs.include.redist.c%
b8f253e8
KM
6 */
7
2ce81398 8#if defined(LIBC_SCCS) && !defined(lint)
269a7923 9static char sccsid[] = "@(#)seteuid.c 5.4 (Berkeley) %G%";
21fad3ef 10#endif /* LIBC_SCCS and not lint */
89b2a55d
SL
11
12seteuid(euid)
13 int euid;
14{
15
16 return (setreuid(-1, euid));
17}