122105Smckusick /* 222105Smckusick * Copyright (c) 1983 Regents of the University of California. 335311Sbostic * All rights reserved. 435311Sbostic * 5*42626Sbostic * %sccs.include.redist.c% 622105Smckusick */ 713508Ssam 826585Sdonn #if defined(LIBC_SCCS) && !defined(lint) 9*42626Sbostic static char sccsid[] = "@(#)seteuid.c 5.4 (Berkeley) 06/01/90"; 1035311Sbostic #endif /* LIBC_SCCS and not lint */ 1122105Smckusick seteuid(euid)1213508Ssamseteuid(euid) 1313508Ssam int euid; 1413508Ssam { 1513508Ssam 1613508Ssam return (setreuid(-1, euid)); 1713508Ssam } 18