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:
Dag-Erling Smørgrav 2008-09-01 14:15:57 +00:00
parent 67c7bbf39c
commit d08cd9468b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=182601

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