diff options
Diffstat (limited to 'otherlibs/unix/access.c')
-rw-r--r-- | otherlibs/unix/access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/access.c b/otherlibs/unix/access.c index 99432235e..72e3d77fb 100644 --- a/otherlibs/unix/access.c +++ b/otherlibs/unix/access.c @@ -39,7 +39,7 @@ static int access_permission_table[] = { R_OK, W_OK, X_OK, F_OK }; -value unix_access(value path, value perms) /* ML */ +CAMLprim value unix_access(value path, value perms) { int ret; ret = access(String_val(path), |