summaryrefslogtreecommitdiffstats
path: root/libpthread/nptl/sysdeps/unix/sysv/linux
diff options
context:
space:
mode:
authorKhem Raj <kraj@mvista.com>2008-07-14 07:39:03 +0000
committerKhem Raj <kraj@mvista.com>2008-07-14 07:39:03 +0000
commit4d85740b199127856cbce1ed697b8f86e9ca5fda (patch)
tree189fc16dc24ec4a77a8449b42329bbea04d4228b /libpthread/nptl/sysdeps/unix/sysv/linux
parent32c5dde1e30fd8dc1fbac830cd8c92f8e4c11ef7 (diff)
downloaduClibc-alpine-4d85740b199127856cbce1ed697b8f86e9ca5fda.tar.bz2
uClibc-alpine-4d85740b199127856cbce1ed697b8f86e9ca5fda.tar.xz
Undefine some of redundant syscalls not used by EABI kernels. So uclibc could use alternative implementations for them.
include sys/syscalls.h in pt-gettimeofday.c
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux')
-rw-r--r--libpthread/nptl/sysdeps/unix/sysv/linux/arm/pt-gettimeofday.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/arm/pt-gettimeofday.c b/libpthread/nptl/sysdeps/unix/sysv/linux/arm/pt-gettimeofday.c
index 12552dbf0..08710f1c8 100644
--- a/libpthread/nptl/sysdeps/unix/sysv/linux/arm/pt-gettimeofday.c
+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/arm/pt-gettimeofday.c
@@ -1,6 +1,5 @@
-#include "../../../../../../../libc/sysdeps/linux/common/syscalls.h"
+#include <sys/syscall.h>
#include <sys/time.h>
int gettimeofday (struct timeval *, struct timezone *) attribute_hidden;
_syscall2(int, gettimeofday, struct timeval *, tv, struct timezone *, tz);
-