blob: f43235dd3e773002092d31b17227ca53986aa621 [file] [log] [blame] [edit]
(* WebAssembly-compatible i64 implementation *)
include Ixx.Make
(struct
include Int64
let bitwidth = 64
let to_hex_string = Printf.sprintf "%Lx"
let of_int64 i = i
let to_int64 i = i
end)