comparison src/m/intel386.h @ 12548:531c4c566e55

[linux]: Include values.h and #undef certain macros, to avoid conflict later.
author Karl Heuer <kwzh@gnu.org>
date Mon, 17 Jul 1995 22:27:44 +0000
parents 74e5ebf071fb
children f270ad11be9c
comparison
equal deleted inserted replaced
12547:63cdecbd7af4 12548:531c4c566e55
50 50
51 /* The following three symbols give information on 51 /* The following three symbols give information on
52 the size of various data types. */ 52 the size of various data types. */
53 53
54 54
55 /* Linux defines these in <values.h>, but they can't be used in #if's */ 55 /* Linux defines these in <values.h>, but they can't be used in #if's.
56 #include it now so we know we've overridden it once and for all. */
57 #ifdef linux
58 #include <values.h>
56 #undef SHORTBITS 59 #undef SHORTBITS
57 #undef INTBITS 60 #undef INTBITS
58 #undef LONGBITS 61 #undef LONGBITS
62 #endif
59 63
60 #define SHORTBITS 16 /* Number of bits in a short */ 64 #define SHORTBITS 16 /* Number of bits in a short */
61 65
62 #define INTBITS 32 /* Number of bits in an int */ 66 #define INTBITS 32 /* Number of bits in an int */
63 67