summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/lseek.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/lseek.c')
-rw-r--r--otherlibs/unix/lseek.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/lseek.c b/otherlibs/unix/lseek.c
index fc0a3b7fb..567f44d4e 100644
--- a/otherlibs/unix/lseek.c
+++ b/otherlibs/unix/lseek.c
@@ -27,7 +27,7 @@ static int seek_command_table[] = {
SEEK_SET, SEEK_CUR, SEEK_END
};
-value unix_lseek(value fd, value ofs, value cmd) /* ML */
+CAMLprim value unix_lseek(value fd, value ofs, value cmd)
{
long ret;
ret = lseek(Int_val(fd), Long_val(ofs),