diff options
Diffstat (limited to 'otherlibs/unix/lseek.c')
-rw-r--r-- | otherlibs/unix/lseek.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/lseek.c b/otherlibs/unix/lseek.c index c785f1c8d..ffb1d0b81 100644 --- a/otherlibs/unix/lseek.c +++ b/otherlibs/unix/lseek.c @@ -26,8 +26,7 @@ static int seek_command_table[] = { SEEK_SET, SEEK_CUR, SEEK_END }; -value unix_lseek(fd, ofs, cmd) /* ML */ - value fd, ofs, cmd; +value unix_lseek(value fd, value ofs, value cmd) /* ML */ { long ret; ret = lseek(Int_val(fd), Long_val(ofs), |