Set SIZEOF_LONG_INT and SIZEOF_LONG_LONG_INT to plausible values. They

aren't used for anything, but that's no excuse for being silly.
This commit is contained in:
des 2008-09-01 14:15:57 +00:00
parent ffc7e2eee2
commit f50b650b57

View File

@ -1268,10 +1268,10 @@
#define SIZEOF_INT 4
/* The size of `long int', as computed by sizeof. */
#define SIZEOF_LONG_INT 8
#define SIZEOF_LONG_INT 4
/* The size of `long long int', as computed by sizeof. */
#define SIZEOF_LONG_LONG_INT 4
#define SIZEOF_LONG_LONG_INT 8
/* The size of `short int', as computed by sizeof. */
#define SIZEOF_SHORT_INT 2