From 7d62376e249e600387de939d1866d6124562cca3 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Tue, 11 May 2010 19:29:50 -0400 Subject: [PATCH] vm: fix compile error --- vm/math.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vm/math.hpp b/vm/math.hpp index d78ae54010..c2444b98f9 100644 --- a/vm/math.hpp +++ b/vm/math.hpp @@ -90,8 +90,8 @@ VM_C_API cell from_unsigned_cell(cell integer, factor_vm *vm); VM_C_API cell from_signed_8(s64 n, factor_vm *vm); VM_C_API cell from_unsigned_8(u64 n, factor_vm *vm); -VM_C_API s64 to_signed_8(cell obj, factor_vm *vm); -VM_C_API u64 to_unsigned_8(cell obj, factor_vm *vm); +VM_C_API s64 *to_signed_8(cell obj, factor_vm *vm); +VM_C_API s64 *to_unsigned_8(cell obj, factor_vm *vm); VM_C_API fixnum to_fixnum(cell tagged, factor_vm *vm); VM_C_API cell to_cell(cell tagged, factor_vm *vm);