1*42477Sbostic/*- 2*42477Sbostic * Copyright (c) 1990 The Regents of the University of California. 3*42477Sbostic * All rights reserved. 4*42477Sbostic * 5*42477Sbostic * This code is derived from software contributed to Berkeley by 6*42477Sbostic * the Systems Programming Group of the University of Utah Computer 7*42477Sbostic * Science Department. 8*42477Sbostic * 9*42477Sbostic * %sccs.include.redist.c% 10*42477Sbostic */ 11*42477Sbostic 12*42477Sbostic#if defined(LIBC_SCCS) && !defined(lint) 13*42477Sbostic .asciz "@(#)geteuid.s 5.1 (Berkeley) 05/30/90" 14*42477Sbostic#endif /* LIBC_SCCS and not lint */ 15*42477Sbostic 16*42477Sbostic#include "SYS.h" 17*42477Sbostic 18*42477SbosticPSEUDO(geteuid,getuid) /* euid = geteuid(); */ 19*42477Sbostic movl d1,d0 20*42477Sbostic rts 21