fix long long types

This commit is contained in:
Vítor Santos Costa 2010-05-06 16:37:44 +01:00
parent 9a437820a3
commit bd06b719db

View File

@ -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;