"Zeugswetter Andreas SB SD" <ZeugswetterA@spardat.at> writes:
/* Plain "long int" fits, use it */
+ #if SIZEOF_INT8 == 0
typedef long int int64;
+ #endif
+ #if SIZEOF_UINT8 == 0
typedef unsigned long int uint64;
+ #endif
This coding appears to assume "if the platform defines int8, then
it will define int64 as well". Seems mighty fragile to me.
regards, tom lane