diff options
Diffstat (limited to 'libc/sysdeps/linux/common/geteuid.c')
-rw-r--r-- | libc/sysdeps/linux/common/geteuid.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/geteuid.c b/libc/sysdeps/linux/common/geteuid.c new file mode 100644 index 000000000..d975a7837 --- /dev/null +++ b/libc/sysdeps/linux/common/geteuid.c @@ -0,0 +1,25 @@ +/* vi: set sw=4 ts=4: */ +/* + * geteuid() for uClibc + * + * Copyright (C) 2000-2004 by Erik Andersen <andersen@codpoet.org> + * + * GNU Library General Public License (LGPL) version 2 or later. + */ + +#include "syscalls.h" +#include <unistd.h> + +#ifdef __NR_geteuid +#define __NR___syscall_geteuid __NR_geteuid +static inline _syscall0(int, __syscall_geteuid); +uid_t geteuid(void) +{ + return (__syscall_geteuid()); +} +#else +uid_t geteuid(void) +{ + return (getuid()); +} +#endif |