diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2002-06-07 09:49:45 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2002-06-07 09:49:45 +0000 |
commit | a82c3665042b80a0febcbffdf0577cd37de349ff (patch) | |
tree | 25ddb7621d275881c1cfa38e6ce0a2b1462270b8 /byterun/custom.h | |
parent | 143761a5142bf30a3321ec7b66bf2f4b2620ac30 (diff) |
Portage Mingw et revision du portage Win32/MSVC
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4899 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/custom.h')
-rw-r--r-- | byterun/custom.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/byterun/custom.h b/byterun/custom.h index ca3861f0a..f2fbe1b42 100644 --- a/byterun/custom.h +++ b/byterun/custom.h @@ -31,10 +31,9 @@ struct custom_operations { }; #define custom_finalize_default NULL -CAMLextern int custom_compare_default(value v1, value v2); +#define custom_compare_default NULL #define custom_hash_default NULL -CAMLextern void custom_serialize_default(value v, unsigned long * wsize_32, - unsigned long * wsize_64); +#define custom_serialize_default NULL #define custom_deserialize_default NULL #define Custom_ops_val(v) (*((struct custom_operations **) (v))) |