diff options
Diffstat (limited to 'otherlibs/unix/chdir.c')
-rw-r--r-- | otherlibs/unix/chdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/chdir.c b/otherlibs/unix/chdir.c index 63c92c03a..003e8e4cf 100644 --- a/otherlibs/unix/chdir.c +++ b/otherlibs/unix/chdir.c @@ -15,7 +15,7 @@ #include <mlvalues.h> #include "unixsupport.h" -value unix_chdir(value path) /* ML */ +CAMLprim value unix_chdir(value path) { int ret; ret = chdir(String_val(path)); |