Go to the documentation of this file.
14 #ifndef BRIDGE_LONG_INCLUDED
15 #define BRIDGE_LONG_INCLUDED
31 #if (__WORDSIZE == 64)
32 typedef int64_t long_t;
33 #elif (__WORDSIZE == 32)
34 #warning 32bit environment may overflow for int variables
35 typedef int32_t long_t;
37 #error unknown environment, not 32bit nor 64bit ?
43 #endif // BRIDGE_LONG_INCLUDED