diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-01 20:56:36 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-01 20:56:36 +0000 |
commit | a5b122db0a8364017d00b3627d30be68746cbdb1 (patch) | |
tree | 0e8ca9c48bf2ec4459d32ab0f379421b5f1ff604 /libc/sysdeps/linux/common | |
parent | 8b9ed7837f189940daf0bc32b2418420b3d5f7a3 (diff) |
Make __syscall_fadvise64_64 static inline
Diffstat (limited to 'libc/sysdeps/linux/common')
-rw-r--r-- | libc/sysdeps/linux/common/posix_fadvise64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/posix_fadvise64.c b/libc/sysdeps/linux/common/posix_fadvise64.c index 9c4f31e00..5c5cf9906 100644 --- a/libc/sysdeps/linux/common/posix_fadvise64.c +++ b/libc/sysdeps/linux/common/posix_fadvise64.c @@ -32,7 +32,7 @@ _syscall4(int, posix_fadvise64, int, fd, __off64_t, offset, #ifdef _syscall6 /* workaround until everyone has _syscall6() */ #define __NR___syscall_fadvise64_64 __NR_fadvise64_64 -_syscall6(int, __syscall_fadvise64_64, int, fd, +static inline _syscall6(int, __syscall_fadvise64_64, int, fd, unsigned long, high_offset, unsigned long, low_offset, unsigned long, high_len, unsigned long, low_len, int, advice); |