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