xref: /original-bsd/lib/libc/vax/sys/geteuid.s (revision 0999a820)
1/*
2 * Copyright (c) 1983 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 */
7
8#include "SYS.h"
9
10#if defined(LIBC_SCCS) && !defined(lint)
11	ASMSTR "@(#)geteuid.s	5.7 (Berkeley) 05/30/90"
12#endif /* LIBC_SCCS and not lint */
13
14PSEUDO(geteuid,getuid)
15	movl	r1,r0
16	ret		/* euid = geteuid(); */
17