fix interface types

This commit is contained in:
Vítor Santos Costa 2010-05-06 16:35:53 +01:00
parent 6307508ffc
commit 53336b6788

View File

@ -45,9 +45,16 @@ typedef struct FunctorEntry *YAP_Functor;
typedef struct AtomEntry *YAP_Atom; typedef struct AtomEntry *YAP_Atom;
#if _WIN64
typedef unsigned long long YAP_CELL;
typedef unsigned long long int YAP_UInt;
#else
typedef long int YAP_Int; typedef long int YAP_Int;
typedef unsigned long int YAP_UInt; typedef unsigned long int YAP_UInt;
#endif
typedef double YAP_Float; typedef double YAP_Float;