pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:373:
#if SIZEOF_INT == 8 #define B8_T int #elif SIZEOF_LONG == 8 #define B8_T long #elif (SIZEOF_LONG_LONG - 0) == 8 #define B8_T long long #elif (SIZEOF___INT64 - 0) == 8 #define B8_T __int64 #elif SIZEOF_CHAR_P == 8 #define B8_T char *
-
#elif defined(B4_T)
-
struct b8_t_s { B4_T x,y; };
-
#define B8_T struct b8_t_s
+
#endif #if (SIZEOF___INT128 - 0) == 16 #define B16_T __int128
-
#elif defined(B8_T)
-
struct b16_t_s { B8_T x,y; };
-
#define B16_T struct b16_t_s
+
#endif /* INT_TYPE stuff */ #ifndef MAX_INT_TYPE # ifdef WITH_SHORT_INT # define MAX_INT_TYPE SHRT_MAX # define MIN_INT_TYPE SHRT_MIN # define PRINTPIKEINT "h" # define INT_ARG_TYPE int