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