diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1997-06-13 15:52:43 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1997-06-13 15:52:43 +0000 |
commit | 6cc9c438667c56c0fb66e1b8d2366b6efb94805b (patch) | |
tree | cebcadbaa332f69410bf6438251c686168339687 /otherlibs/unix/unix.mli | |
parent | f7ccaf7b6c4365b7b1b640949de3b3e54356782c (diff) |
Eradication des warnings de gcc.
Nettoyages divers.
Suppression de ioctl.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1597 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix/unix.mli')
-rw-r--r-- | otherlibs/unix/unix.mli | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/otherlibs/unix/unix.mli b/otherlibs/unix/unix.mli index dce5ee185..4f5804739 100644 --- a/otherlibs/unix/unix.mli +++ b/otherlibs/unix/unix.mli @@ -442,18 +442,6 @@ external readlink : string -> string = "unix_readlink" (* Read the contents of a link. *) -(*** Special files *) - -external ioctl_int : file_descr -> int -> int -> int = "unix_ioctl_int" - (* Interface to [ioctl] in the case where the argument is an - integer. The first integer argument is the command code; - the second is the integer parameter. *) -external ioctl_ptr : file_descr -> int -> string -> int = "unix_ioctl_ptr" - (* Interface to [ioctl] in the case where the argument is a pointer. - The integer argument is the command code. A pointer to the string - argument is passed as argument to the command. *) - - (*** Polling *) external select : |