search for: __long_long_max__

Displaying 2 results from an estimated 2 matches for "__long_long_max__".

2013 Sep 19
1
Using long long types in C++
...osing some precision and returning an int, loosing a bit less precision and returning a double or use bit shifting tricks and do something compatible with the bit64 package). To do this, we try to be careful and hide the code behind these two PP tests: #if defined(__GNUC__) && defined(__LONG_LONG_MAX__) which tests for gcc compatible (includes clang) compiler and the availability of the long long type. Now this is not enough and we also have to use __extension__ to disable warnings that are emitted by -pedantic. So we have something like this: #if defined(__GNUC__) && defined(__LON...
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...YPE__ unsigned int #define __GNUC__ 3 #define __LDBL_MIN_EXP__ (-16381) #define __tune_i586__ 1 #define __LDBL_MAX_10_EXP__ 4932 #define __DBL_EPSILON__ 2.2204460492503131e-16 #define __DBL_MAX__ 1.7976931348623157e+308 #define __DBL_MAX_EXP__ 1024 #define __FLT_DENORM_MIN__ 1.40129846e-45F #define __LONG_LONG_MAX__ 9223372036854775807LL #define __FLT_MAX__ 3.40282347e+38F #define __GXX_ABI_VERSION 102 #define __FLT_MIN_10_EXP__ (-37) #define __FLT_MIN_EXP__ (-125) #define i386 1 #define __GNUC_MINOR__ 3 #define __DBL_MAX_10_EXP__ 308 #define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L #define __DBL_MIN_...