aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/uint64.c
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/uint64.c')
-rw-r--r--cparser/uint64.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/cparser/uint64.c b/cparser/uint64.c
index 53966177..15288876 100644
--- a/cparser/uint64.c
+++ b/cparser/uint64.c
@@ -16,11 +16,6 @@
#include <caml/mlvalues.h>
#include <caml/alloc.h>
-value cparser_int64_unsigned_to_float(value v)
-{
- return caml_copy_double((double)((uint64) Int64_val(v)));
-}
-
value cparser_int64_unsigned_div(value v1, value v2)
{
return caml_copy_int64((uint64) Int64_val(v1) / (uint64) Int64_val(v2));