diff options
author | Nicholas J. Kain <njkain@gmail.com> | 2011-02-15 08:21:47 -0500 |
---|---|---|
committer | Nicholas J. Kain <njkain@gmail.com> | 2011-02-15 08:21:47 -0500 |
commit | ebc4a17957d81803ca649a81083aabbd58260460 (patch) | |
tree | e3f0475a1720cab26727eae589e6b7dc81e00214 | |
parent | bb89bdd00e494baa11ceb67bf40cc28b0104b642 (diff) | |
download | musl-ebc4a17957d81803ca649a81083aabbd58260460.tar.gz musl-ebc4a17957d81803ca649a81083aabbd58260460.tar.xz musl-ebc4a17957d81803ca649a81083aabbd58260460.zip |
Remove __syscall_lseek from x86_64 syscall.h.
-rw-r--r-- | arch/x86_64/syscall.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/x86_64/syscall.h b/arch/x86_64/syscall.h index 274fcd72..0b04b29e 100644 --- a/arch/x86_64/syscall.h +++ b/arch/x86_64/syscall.h @@ -427,12 +427,4 @@ static inline long syscall6(long n, long a1, long a2, long a3, long a4, #define __syscall_ioctl(fd,ioc,arg) syscall3(__NR_ioctl, (fd), (ioc), (long)(arg)) #define __syscall_exit(code) syscall1(__NR_exit, code) -#define __NEED_off_t -#include <bits/alltypes.h> - -static inline off_t __syscall_lseek(int fd, off_t offset, int whence) -{ - return syscall3(__NR_lseek, fd, offset, whence); -} - #endif |