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