pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:154:
#elif SIZEOF_LONG == 8 #define B8_T long #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 defined(B8_T)
-
struct b16_t { B8_T x,y; };
+
struct b16_t
_s
{ B8_T x,y; };
#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; \