Changeset 1663 in Sophya for trunk/ArchTOIPipe/config.h
- Timestamp:
- Oct 1, 2001, 4:01:35 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/config.h
r1477 r1663 9 9 #ifndef WITH_SOPHYA 10 10 #define NO_SOPHYA 11 12 #ifdef HAVE_STDINT_H 13 #include <stdint.h> 14 #define int_4 int4_t 15 #define int_8 int8_t 16 #define uint_8 uint8_t 17 #else 11 18 #if SIZEOF_SHORT == 4 12 19 #define int_4 short int … … 19 26 #if SIZEOF_LONG == 8 20 27 #define int_8 long 28 #define uint_8 unsigned long 29 #elif SIZEOF_LONG_LONG == 8 30 #define int_8 long long 31 #define uint_8 unsigned long long 21 32 #else 22 #error long is not 8 bytes... 33 #error no 8-byte long int... 34 #endif 23 35 #endif 24 36 #endif 25 37 26 38 #endif 39
Note:
See TracChangeset
for help on using the changeset viewer.