summaryrefslogtreecommitdiff
path: root/src/unistd/lseek.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/lseek.c')
-rw-r--r--src/unistd/lseek.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/lseek.c b/src/unistd/lseek.c
index 86436a9e..dd194761 100644
--- a/src/unistd/lseek.c
+++ b/src/unistd/lseek.c
@@ -5,7 +5,7 @@
off_t lseek(int fildes, off_t offset, int whence)
{
- SC(off_t, fildes, offset, whence);
+ SYSCALL("lseek", off_t, -1, fildes, offset, whence, 0, 0, 0);
}
/*
POSIX(1)