summaryrefslogtreecommitdiff
path: root/otherlibs/unix/close.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/close.c')
-rw-r--r--otherlibs/unix/close.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/otherlibs/unix/close.c b/otherlibs/unix/close.c
deleted file mode 100644
index 47ea2ef1da..0000000000
--- a/otherlibs/unix/close.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <mlvalues.h>
-#include "unix.h"
-
-value unix_close(fd) /* ML */
- value fd;
-{
- if (close(Int_val(fd)) == -1) uerror("close", Nothing);
- return Val_unit;
-}