Branch: Tag:

1998-01-29

1998-01-29 00:30:37 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

identifiers in parents should now work better

Rev: lib/modules/Stdio.pmod:1.13
Rev: src/compilation.h:1.6
Rev: src/docode.c:1.26
Rev: src/fsort.c:1.4
Rev: src/global.h:1.14
Rev: src/las.c:1.47
Rev: src/object.c:1.35
Rev: src/object.h:1.15
Rev: src/pike_memory.c:1.7
Rev: src/program.c:1.59
Rev: src/program.h:1.29

133:      #define FLOAT_TYPE float    + #define B1_T char    -  + #if SIZEOF_SHORT == 2 + #define B2_T short + #elif SIZEOF_INT == 2 + #define B2_T int + #endif    -  + #if SIZEOF_SHORT == 4 + #define B4_T short + #elif SIZEOF_INT == 4 + #define B4_T int + #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 + #endif +  + #if SIZEOF_DOUBLE == 16 + #define B16_T double + #elif defined(B8_T) + struct b16_t { B8_T x,y; }; + #define B16_T struct b16_t + #endif +  +    #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)   #define RCSID(X) \    static char *rcsid __attribute__ ((unused)) =X