summaryrefslogtreecommitdiff
path: root/config_H
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
parent3841441e5e6bb3f9e314b1a60a20e0690567685f (diff)
downloadperl-24fef2a7cd8a0fa32e8f3397b46c72d088f692bc.tar.gz
Configure updates for intsize and ssizetype
Diffstat (limited to 'config_H')
-rw-r--r--config_H14
1 files changed, 12 insertions, 2 deletions
diff --git a/config_H b/config_H
index 2b6834b2e5..39dd436b90 100644
--- a/config_H
+++ b/config_H
@@ -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.