projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb89bdd
)
Remove __syscall_lseek from x86_64 syscall.h.
author
Nicholas J. Kain
<njkain@gmail.com>
Tue, 15 Feb 2011 13:21:47 +0000
(08:21 -0500)
committer
Nicholas J. Kain
<njkain@gmail.com>
Tue, 15 Feb 2011 13:21:47 +0000
(08:21 -0500)
arch/x86_64/syscall.h
patch
|
blob
|
history
diff --git
a/arch/x86_64/syscall.h
b/arch/x86_64/syscall.h
index 274fcd72c37d8d48c7935c8bf896d1d8c3ad6b2a..0b04b29e267de0fb62bda4e95bec3ae2d58e2c8f 100644
(file)
--- 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