summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/chmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/chmod.c')
-rw-r--r--otherlibs/unix/chmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/chmod.c b/otherlibs/unix/chmod.c
index de13f4a42..9ab44e96c 100644
--- a/otherlibs/unix/chmod.c
+++ b/otherlibs/unix/chmod.c
@@ -17,7 +17,7 @@
#include <mlvalues.h>
#include "unixsupport.h"
-value unix_chmod(value path, value perm) /* ML */
+CAMLprim value unix_chmod(value path, value perm)
{
int ret;
ret = chmod(String_val(path), Int_val(perm));