diff options
Diffstat (limited to 'otherlibs/win32unix/unix.ml')
-rw-r--r-- | otherlibs/win32unix/unix.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/win32unix/unix.ml b/otherlibs/win32unix/unix.ml index 6cbcdc160..24d8c9c5d 100644 --- a/otherlibs/win32unix/unix.ml +++ b/otherlibs/win32unix/unix.ml @@ -188,8 +188,8 @@ let write fd buf ofs len = (* Interfacing with the standard input/output library *) -external open_read_descriptor : int -> in_channel = "caml_open_descriptor" -external open_write_descriptor : int -> out_channel = "caml_open_descriptor" +external open_read_descriptor : int -> in_channel = "caml_open_descriptor_in" +external open_write_descriptor : int -> out_channel = "caml_open_descriptor_out" external fd_of_in_channel : in_channel -> int = "channel_descriptor" external fd_of_out_channel : out_channel -> int = "channel_descriptor" |