diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1995-10-23 16:58:06 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1995-10-23 16:58:06 +0000 |
commit | d52f79f93e78978875aa9452a67efed79f525b23 (patch) | |
tree | 7430161808fe2ccccacf38fc3bf65a084b5ad326 /otherlibs/unix/unix.ml | |
parent | 0f2c6734f655711367903a35faf684ba4832ace3 (diff) |
Makefile: compilation avec cslopt aussi.
sendrecv, unix: adaptation de sendto a cslopt (6 arguments).
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@349 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix/unix.ml')
-rw-r--r-- | otherlibs/unix/unix.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/unix.ml b/otherlibs/unix/unix.ml index 2ca2de59e..e6dcfdff0 100644 --- a/otherlibs/unix/unix.ml +++ b/otherlibs/unix/unix.ml @@ -356,7 +356,7 @@ external send : file_descr -> string -> int -> int -> msg_flag list -> int = "unix_send" external sendto : file_descr -> string -> int -> int -> msg_flag list -> sockaddr -> int - = "unix_sendto" + = "unix_sendto" "unix_sendto_native" type host_entry = { h_name : string; |