diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-05 20:48:16 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-05 20:48:16 +0000 |
commit | 16e078bba3f84931309f7e5f21c31ae6c3556039 (patch) | |
tree | aa0177d3e35735151f123d995191ea57c63bf0a0 /libc/sysdeps | |
parent | bf0b6b093871685a6737a6c7ad2984b3c16ccedb (diff) |
Fix __adjtimex symbol
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/common/syscalls.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index b0cf4232f..bb4bb109e 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -980,6 +980,7 @@ _syscall1(int, uname, struct utsname *, buf); #ifdef L_adjtimex #include <sys/timex.h> _syscall1(int, adjtimex, struct timex *, buf); +weak_alias(adjtimex, __adjtimex); #endif //#define __NR_mprotect 125 |