diff options
Diffstat (limited to 'src/unistd/lseek.c')
-rw-r--r-- | src/unistd/lseek.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unistd/lseek.c b/src/unistd/lseek.c index 0a5ed392..bf8cd852 100644 --- a/src/unistd/lseek.c +++ b/src/unistd/lseek.c @@ -1,6 +1,5 @@ #include <unistd.h> #include "syscall.h" -#include "libc.h" off_t lseek(int fd, off_t offset, int whence) { @@ -12,4 +11,4 @@ off_t lseek(int fd, off_t offset, int whence) #endif } -LFS64(lseek); +weak_alias(lseek, lseek64); |