pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:148:
#elif SIZEOF_LONG == 4 #define B4_T long #endif #if SIZEOF_INT == 8 #define B8_T int #elif SIZEOF_LONG == 8 #define B8_T long #elif SIZEOF_CHAR_P == 8 #define B8_T char *
-
#elif SIZEOF_DOUBLE == 8
-
#define B8_T double
+
#elif defined(B4_T) struct b8_t_s { B4_T x,y; };
-
#define B8_T struct b8_t
+
#define B8_T struct b8_t
_s
#endif
-
#if
SIZEOF_DOUBLE == 16
-
#define B16_T double
-
#elif
defined(B8_T)
+
#if defined(B8_T)
struct b16_t { B8_T x,y; };
-
#define B16_T struct b16_t
+
#define B16_T struct b16_t
_s
#endif #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) #define RCSID(X) \ static char *rcsid __attribute__ ((unused)) =X #elif __GNUC__ == 2 #define RCSID(X) \ static char *rcsid = X; \ static void *use_rcsid=(&use_rcsid, (void *)&rcsid)