summaryrefslogtreecommitdiffstats
path: root/byterun/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/hash.c')
-rw-r--r--byterun/hash.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/byterun/hash.c b/byterun/hash.c
index a6e3970fd..17748e393 100644
--- a/byterun/hash.c
+++ b/byterun/hash.c
@@ -26,7 +26,7 @@ static long hash_univ_limit, hash_univ_count;
static void hash_aux(value obj);
-CAMLprim value hash_univ_param(value count, value limit, value obj)
+CAMLprim value caml_hash_univ_param(value count, value limit, value obj)
{
hash_univ_limit = Long_val(limit);
hash_univ_count = Long_val(count);
@@ -142,7 +142,7 @@ static void hash_aux(value obj)
/* Hashing variant tags */
-CAMLexport value hash_variant(char * tag)
+CAMLexport value caml_hash_variant(char * tag)
{
value accu;
/* Same hashing algorithm as in ../typing/btype.ml, function hash_variant */
@@ -155,4 +155,3 @@ CAMLexport value hash_variant(char * tag)
platforms */
return (int32) accu;
}
-