diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2002-02-07 10:44:37 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2002-02-07 10:44:37 +0000 |
commit | 181e6a3503602c605530c048330f597781772427 (patch) | |
tree | 1ecc27f751e5c57d22dce3ee2c24af041fe517ab /otherlibs | |
parent | a79dad704fba2e8f789e82752fdb7978eb3ea0c4 (diff) |
do not depend on win32unix
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4360 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs')
-rw-r--r-- | otherlibs/labltk/support/cltkFile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/labltk/support/cltkFile.c b/otherlibs/labltk/support/cltkFile.c index a0cb4d0e1..c77ea2198 100644 --- a/otherlibs/labltk/support/cltkFile.c +++ b/otherlibs/labltk/support/cltkFile.c @@ -106,7 +106,7 @@ CAMLprim value camltk_rem_file_output(value fd, value cbid) /* Under Win32, we go through the generic channel abstraction */ -#include <unixsupport.h> +#define Handle_val(v) (*((HANDLE *) Data_custom_val(v))) /* Map Unix.file_descr values to Tcl channels */ |