select: fix 64-bit timeout truncation on pre-time64 kernels
[musl] / src / fcntl / posix_fadvise.c
index c1a0ef5..07346d2 100644 (file)
@@ -1,6 +1,5 @@
 #include <fcntl.h>
 #include "syscall.h"
-#include "libc.h"
 
 int posix_fadvise(int fd, off_t base, off_t len, int advice)
 {
@@ -15,5 +14,3 @@ int posix_fadvise(int fd, off_t base, off_t len, int advice)
                __SYSCALL_LL_E(len), advice);
 #endif
 }
-
-LFS64(posix_fadvise);