more fixes

This commit is contained in:
Vítor Santos Costa
2010-05-06 16:32:41 +01:00
parent f3cb0184e7
commit 6307508ffc
3 changed files with 7 additions and 7 deletions

View File

@@ -29,7 +29,11 @@
/* Type definitions */
typedef unsigned long YAP_CELL; /* this is common to all current machines */
#if _WIN64
typedef unsigned long long YAP_CELL;
#else
typedef unsigned long YAP_CELL;
#endif
typedef int YAP_Bool;