diff options
author | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1997-02-03 22:37:38 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-02-04 17:47:00 +1200 |
commit | 24fef2a7cd8a0fa32e8f3397b46c72d088f692bc (patch) | |
tree | 1b21c96e9faebcbb1667b0c71048a4394de75f94 /config_H | |
parent | 3841441e5e6bb3f9e314b1a60a20e0690567685f (diff) | |
download | perl-24fef2a7cd8a0fa32e8f3397b46c72d088f692bc.tar.gz |
Configure updates for intsize and ssizetype
Diffstat (limited to 'config_H')
-rw-r--r-- | config_H | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -1261,10 +1261,20 @@ /*#define 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 4 /**/ +#define LONGSIZE 4 /**/ +#define SHORTSIZE 2 /**/ /* Off_t: * This symbol holds the type used to declare offsets in the kernel. |