diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-04 01:08:42 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-04 01:08:42 +0000 |
commit | 765696aac59b7146777e4dfda0d8d35df0bb29e1 (patch) | |
tree | a1f2f8ce19de35f8030e8e388a3b962a2bff8cc7 /libc/sysdeps/linux/common/geteuid.c | |
parent | 855dca36fe7aa348dc56996385fbbb77fbf3e83d (diff) |
More hiding, 300 left
Diffstat (limited to 'libc/sysdeps/linux/common/geteuid.c')
-rw-r--r-- | libc/sysdeps/linux/common/geteuid.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/geteuid.c b/libc/sysdeps/linux/common/geteuid.c index 10bcce735..3936739b3 100644 --- a/libc/sysdeps/linux/common/geteuid.c +++ b/libc/sysdeps/linux/common/geteuid.c @@ -7,19 +7,22 @@ * GNU Library General Public License (LGPL) version 2 or later. */ +#define getuid __getuid + #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) +uid_t attribute_hidden __geteuid(void) { return (__syscall_geteuid()); } #else -uid_t geteuid(void) +uid_t attribute_hidden __geteuid(void) { return (getuid()); } #endif +strong_alias(__geteuid,geteuid) |