X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Funistd%2Flseek.c;h=0a5ed392bc03c231208933ff3c2376bcfcb5f3b3;hb=231b9d1880bf686c0db918cea16c355f2d6598fc;hp=63cea58817e4ccb7f1a6b9b50fe29b64cf9bfd8b;hpb=aa398f56fa398f2202b04e82c67f822f3233786f;p=musl 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