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