diff options
Diffstat (limited to 'otherlibs/unix/closedir.c')
-rw-r--r-- | otherlibs/unix/closedir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/closedir.c b/otherlibs/unix/closedir.c index d44ba896a..baa63b9dd 100644 --- a/otherlibs/unix/closedir.c +++ b/otherlibs/unix/closedir.c @@ -21,7 +21,7 @@ #include <sys/dir.h> #endif -value unix_closedir(value d) /* ML */ +CAMLprim value unix_closedir(value d) { closedir((DIR *) d); return Val_unit; |