summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/llseek.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/llseek.c')
-rw-r--r--libc/sysdeps/linux/common/llseek.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/llseek.c b/libc/sysdeps/linux/common/llseek.c
index 4ebef54ca..33cbe46c2 100644
--- a/libc/sysdeps/linux/common/llseek.c
+++ b/libc/sysdeps/linux/common/llseek.c
@@ -37,7 +37,7 @@ loff_t __libc_lseek64(int fd, loff_t offset, int whence)
(off_t) (offset & 0xffffffff), &result, whence) ?: result);
}
#else
-extern __off_t __libc_lseek(int fildes, off_t offset, int whence);
+extern __typeof(lseek) __libc_lseek;
libc_hidden_proto(__libc_lseek)
loff_t __libc_lseek64(int fd, loff_t offset, int whence)