summaryrefslogtreecommitdiff
path: root/config_h.SH
diff options
context:
space:
mode:
authorHans Mulder <hansmu@xs4all.nl>1999-03-04 01:10:45 +0100
committerJarkko Hietaniemi <jhi@iki.fi>1999-03-04 08:07:59 +0000
commit40ff80b2d4aff4df2eda7ee2fd46ea30c84b7ae3 (patch)
treec05d904d4fb017add373cf4c0535af25b55cec33 /config_h.SH
parentc4747d3eff5431f830d3c7a121001f0c204c2625 (diff)
downloadperl-40ff80b2d4aff4df2eda7ee2fd46ea30c84b7ae3.tar.gz
Regen config_h.SH once more because of *size,
noticed by To: Jarkko Hietaniemi <jhi@iki.fi> Cc: perl5-porters@perl.org Subject: [PATCH for _56] LONGSIZE used before it is set in config.h Message-Id: <9903032317.AA23021@icgned.icgroup.nl> p4raw-id: //depot/cfgperl@3076
Diffstat (limited to 'config_h.SH')
-rw-r--r--config_h.SH32
1 files changed, 16 insertions, 16 deletions
diff --git a/config_h.SH b/config_h.SH
index 7429fe0cc3..06b7c8c688 100644
--- a/config_h.SH
+++ b/config_h.SH
@@ -1026,6 +1026,22 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-
*/
#define STDCHAR $stdchar /**/
+/* INTSIZE:
+ * 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 /**/
+
/* HAS_ACCESSX:
* This symbol, if defined, indicates that the accessx routine is
* available to do extended access checks.
@@ -1348,22 +1364,6 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-
#$i_systime I_SYS_TIME /**/
#$i_systimek I_SYS_TIME_KERNEL /**/
-/* INTSIZE:
- * 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 /**/
-
/* VAL_O_NONBLOCK:
* This symbol is to be used during open() or fcntl(F_SETFL) to turn on
* non-blocking I/O for the file descriptor. Note that there is no way