diff options
Diffstat (limited to 'otherlibs/unix/read.c')
-rw-r--r-- | otherlibs/unix/read.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/otherlibs/unix/read.c b/otherlibs/unix/read.c deleted file mode 100644 index 18ba74d662..0000000000 --- a/otherlibs/unix/read.c +++ /dev/null @@ -1,13 +0,0 @@ -#include <mlvalues.h> -#include "unix.h" - -value unix_read(fd, buf, ofs, len) /* ML */ - value fd, buf, ofs, len; -{ - int ret; - enter_blocking_section(); - ret = read(Int_val(fd), &Byte(buf, Long_val(ofs)), Int_val(len)); - leave_blocking_section(); - if (ret == -1) uerror("read", Nothing); - return Val_int(ret); -} |