diff options
Diffstat (limited to 'config_h.SH')
-rwxr-xr-x | config_h.SH | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/config_h.SH b/config_h.SH index 9b9236e125..893e71eb42 100755 --- a/config_h.SH +++ b/config_h.SH @@ -1275,10 +1275,20 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- #$i_vfork I_VFORK /**/ /* INTSIZE: - * This symbol contains the size of an int, so that the C preprocessor - * can make decisions based on it. + * This symbol contains the value of sizeof(int) so that the C + * preprocessor can make decisions based on it. + */ +/* LONGSIZE: + * This symbol contains the value of sizeof(long) so that the C + * preprocessor can make decisions based on it. + */ +/* SHORTSIZE: + * This symbol contains the value of sizeof(short) so that the C + * preprocessor can make decisions based on it. */ #define INTSIZE $intsize /**/ +#define LONGSIZE $longsize /**/ +#define SHORTSIZE $shortsize /**/ /* Off_t: * This symbol holds the type used to declare offsets in the kernel. |