Changes in src/libcfa/limits.c [6e4b913:3d9b5da]
- File:
-
- 1 edited
-
src/libcfa/limits.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/limits.c
r6e4b913 r3d9b5da 10 10 // Created On : Wed Apr 6 18:06:52 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jul 8 13:23:33201613 // Update Count : 1 412 // Last Modified On : Thu Apr 7 17:18:45 2016 13 // Update Count : 11 14 14 // 15 15 … … 20 20 const short int MIN = -32768; 21 21 const int MIN = -2147483648; 22 #if __WORDSIZE == 6423 22 const long int MIN = -9223372036854775807L - 1L; 24 #else25 const long int MIN = (int)MIN;26 #endif // M6427 23 const long long int MIN = -9223372036854775807LL - 1LL; 28 24 … … 31 27 const int MAX = 2147483647; 32 28 const unsigned int MAX = 4294967295_U; 33 #if __WORDSIZE == 6434 29 const long int MAX = 9223372036854775807_L; 35 #else36 const long int MAX = (int)MAX;37 #endif // M6438 30 const unsigned long int MAX = 4294967295_U; 39 31 const long long int MAX = 9223372036854775807_LL;
Note:
See TracChangeset
for help on using the changeset viewer.