From bd06b719db1891b45f775a75123f30e1531dc080 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Santos=20Costa?= Date: Thu, 6 May 2010 16:37:44 +0100 Subject: [PATCH] fix long long types --- include/yap_structs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/yap_structs.h b/include/yap_structs.h index f942ac594..2edc83d13 100755 --- a/include/yap_structs.h +++ b/include/yap_structs.h @@ -46,9 +46,9 @@ typedef struct FunctorEntry *YAP_Functor; typedef struct AtomEntry *YAP_Atom; #if _WIN64 -typedef unsigned long long YAP_CELL; +typedef long long int YAP_Int; -typedef unsigned long long YAP_UInt; +typedef unsigned long long int YAP_UInt; #else typedef long int YAP_Int;