diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2004-01-05 20:26:19 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2004-01-05 20:26:19 +0000 |
commit | 258c929f64adc92812b7d966a07ef9712686e54a (patch) | |
tree | b61d46ba69aad98c6bcbab4e7eaea5648a41dc7e /byterun/custom.c | |
parent | b1b67be7ad15b951b0debb039304af2a8fb37ceb (diff) |
PR#1914,PR#1956, suppression du portage Mac OS 9
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6060 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/custom.c')
-rw-r--r-- | byterun/custom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/custom.c b/byterun/custom.c index d10c652f2..8e3f4a50f 100644 --- a/byterun/custom.c +++ b/byterun/custom.c @@ -21,7 +21,7 @@ #include "memory.h" #include "mlvalues.h" -CAMLextern value caml_alloc_custom(struct custom_operations * ops, +CAMLexport value caml_alloc_custom(struct custom_operations * ops, unsigned long size, mlsize_t mem, mlsize_t max) @@ -49,7 +49,7 @@ struct custom_operations_list { static struct custom_operations_list * custom_ops_table = NULL; -CAMLextern void caml_register_custom_operations(struct custom_operations * ops) +CAMLexport void caml_register_custom_operations(struct custom_operations * ops) { struct custom_operations_list * l = caml_stat_alloc(sizeof(struct custom_operations_list)); |