diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-03 00:34:49 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-03 00:34:49 +0000 |
commit | c885bf5cf94a12202f849477a845d728cbd12889 (patch) | |
tree | 106e36d57ea684166ebde05a8d4be54664e0e6ce /libc/sysdeps/linux/common/time.c | |
parent | ca3067b8cec6e7ffd600c92510197df5aedd8606 (diff) |
More hiding, including __mempcpy
Diffstat (limited to 'libc/sysdeps/linux/common/time.c')
-rw-r--r-- | libc/sysdeps/linux/common/time.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/time.c b/libc/sysdeps/linux/common/time.c index 0c37c375c..506850ff9 100644 --- a/libc/sysdeps/linux/common/time.c +++ b/libc/sysdeps/linux/common/time.c @@ -11,9 +11,10 @@ #include <time.h> #include <sys/time.h> #ifdef __NR_time -_syscall1(time_t, time, time_t *, t); +#define __NR___time __NR_time +attribute_hidden _syscall1(time_t, __time, time_t *, t); #else -time_t time(time_t * t) +time_t attribute_hidden __time(time_t * t) { time_t result; struct timeval tv; @@ -29,3 +30,4 @@ time_t time(time_t * t) return result; } #endif +strong_alias(__time,time) |