diff options
Diffstat (limited to 'otherlibs/unix/unix.ml')
-rw-r--r-- | otherlibs/unix/unix.ml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/otherlibs/unix/unix.ml b/otherlibs/unix/unix.ml index f476d8287..d68a1216f 100644 --- a/otherlibs/unix/unix.ml +++ b/otherlibs/unix/unix.ml @@ -172,12 +172,13 @@ let write fd buf ofs len = else unsafe_write fd buf ofs len external in_channel_of_descr : file_descr -> in_channel - = "caml_open_descriptor_in" + = "caml_ml_open_descriptor_in" external out_channel_of_descr : file_descr -> out_channel - = "caml_open_descriptor_out" -external descr_of_in_channel : in_channel -> file_descr = "channel_descriptor" + = "caml_ml_open_descriptor_out" +external descr_of_in_channel : in_channel -> file_descr + = "caml_channel_descriptor" external descr_of_out_channel : out_channel -> file_descr - = "channel_descriptor" + = "caml_channel_descriptor" type seek_command = SEEK_SET |