From 7e2b221be1bae211b580ea1204dc7c54b2684abd Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 19 Oct 2004 20:10:18 +0000 Subject: Peter S. Mazinger writes: Hello! Would the attached patch be acceptable (maybe instead of __libc_gettimeofday using __gettimeofday) We have some issues, see http://bugs.gentoo.org/show_bug.cgi?id=65892 --- libc/sysdeps/linux/common/gettimeofday.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'libc/sysdeps/linux/common/gettimeofday.c') diff --git a/libc/sysdeps/linux/common/gettimeofday.c b/libc/sysdeps/linux/common/gettimeofday.c index 297039243..d904dfa71 100644 --- a/libc/sysdeps/linux/common/gettimeofday.c +++ b/libc/sysdeps/linux/common/gettimeofday.c @@ -9,4 +9,9 @@ #include "syscalls.h" #include -_syscall2(int, gettimeofday, struct timeval *, tv, struct timezone *, tz); + +#ifdef __NR_gettimeofday +#define __NR___libc_gettimeofday __NR_gettimeofday +#endif +_syscall2(int, __libc_gettimeofday, struct timeval *, tv, struct timezone *, tz); +weak_alias(__libc_gettimeofday, gettimeofday); -- cgit v1.2.3