remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / unistd / lseek.c
index 63cea58817e4ccb7f1a6b9b50fe29b64cf9bfd8b..0a5ed392bc03c231208933ff3c2376bcfcb5f3b3 100644 (file)
@@ -4,7 +4,7 @@
 
 off_t lseek(int fd, off_t offset, int whence)
 {
-#ifdef __NR__llseek
+#ifdef SYS__llseek
        off_t result;
        return syscall(SYS__llseek, fd, offset>>32, offset, &result, whence) ? -1 : result;
 #else