summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/rmdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/rmdir.c')
-rw-r--r--otherlibs/unix/rmdir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/rmdir.c b/otherlibs/unix/rmdir.c
index e08dcfcf2..167d8c8c7 100644
--- a/otherlibs/unix/rmdir.c
+++ b/otherlibs/unix/rmdir.c
@@ -15,7 +15,7 @@
#include <mlvalues.h>
#include "unixsupport.h"
-value unix_rmdir(value path) /* ML */
+CAMLprim value unix_rmdir(value path)
{
if (rmdir(String_val(path)) == -1) uerror("rmdir", path);
return Val_unit;