summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/unlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/unlink.c')
-rw-r--r--otherlibs/unix/unlink.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/unlink.c b/otherlibs/unix/unlink.c
index d1f89347b..9017ecd86 100644
--- a/otherlibs/unix/unlink.c
+++ b/otherlibs/unix/unlink.c
@@ -14,8 +14,7 @@
#include <mlvalues.h>
#include "unixsupport.h"
-value unix_unlink(path) /* ML */
- value path;
+value unix_unlink(value path) /* ML */
{
if (unlink(String_val(path)) == -1) uerror("unlink", path);
return Val_unit;