small compilation fix on 64-bits machines..

This commit is contained in:
David Turner 2000-07-26 22:29:22 +00:00
parent a2a75b7846
commit bc80b12bba

View File

@ -27,10 +27,10 @@
#endif
#ifdef LONG64
#ifdef FT_LONG64
typedef INT64 FT_Int64;
typedef FT_INT64 FT_Int64;
#define ADD_64( x, y, z ) z = (x) + (y)
#define MUL_64( x, y, z ) z = (FT_Int64)(x) * (y)