summaryrefslogtreecommitdiff
path: root/config_h.SH
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafcol.lafayette.edu>1997-02-03 22:37:38 +1200
committerChip Salzenberg <chip@atlantic.net>1997-02-04 17:47:00 +1200
commit24fef2a7cd8a0fa32e8f3397b46c72d088f692bc (patch)
tree1b21c96e9faebcbb1667b0c71048a4394de75f94 /config_h.SH
parent3841441e5e6bb3f9e314b1a60a20e0690567685f (diff)
downloadperl-24fef2a7cd8a0fa32e8f3397b46c72d088f692bc.tar.gz
Configure updates for intsize and ssizetype
Diffstat (limited to 'config_h.SH')
-rwxr-xr-xconfig_h.SH14
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.