X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Funistd%2Flseek.c;h=0a5ed392bc03c231208933ff3c2376bcfcb5f3b3;hp=63cea58817e4ccb7f1a6b9b50fe29b64cf9bfd8b;hb=c2cd25bff89c3581780e7eb267262cb8c4da0d38;hpb=b2486a8922bf4977bd82c8190258e39de28c053b diff --git a/src/unistd/lseek.c b/src/unistd/lseek.c index 63cea588..0a5ed392 100644 --- a/src/unistd/lseek.c +++ b/src/unistd/lseek.c @@ -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