summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/umask.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/umask.c')
-rw-r--r--otherlibs/unix/umask.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/umask.c b/otherlibs/unix/umask.c
index 4c19cba04..3d177c6dc 100644
--- a/otherlibs/unix/umask.c
+++ b/otherlibs/unix/umask.c
@@ -16,8 +16,7 @@
#include <mlvalues.h>
#include "unixsupport.h"
-value unix_umask(perm) /* ML */
- value perm;
+value unix_umask(value perm) /* ML */
{
return Val_int(umask(Int_val(perm)));
}