diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2001-11-13 15:41:01 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2001-11-13 15:41:01 +0000 |
commit | 48d41c5c0a8fabd3ebcf67dca03ce495b1b5b4b8 (patch) | |
tree | 5c58de249e9d392063e900390efc3e97b09e4140 | |
parent | 472be6f6b0c73fb3afd6bdd9c621d04db7078375 (diff) |
Exporter do_read pour Cash
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4005 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | byterun/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/io.c b/byterun/io.c index 2dbebb2b9..3dd20d655 100644 --- a/byterun/io.c +++ b/byterun/io.c @@ -253,7 +253,7 @@ CAMLexport long pos_out(struct channel *channel) /* Input */ -static int do_read(int fd, char *p, unsigned int n) +CAMLexport int do_read(int fd, char *p, unsigned int n) { int retcode; |