diff options
author | Hans Mulder <hansmu@xs4all.nl> | 1999-03-04 01:10:45 +0100 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-03-04 05:48:03 +0000 |
commit | f5b4fb40cc8e1ea1f70785ee88001ed238c73219 (patch) | |
tree | 1c107f967d75b22ece78006caa68e6caa7647dbc /config_h.SH | |
parent | 39ab52836386b91d2e2c323dd305cf42e6be3133 (diff) | |
download | perl-f5b4fb40cc8e1ea1f70785ee88001ed238c73219.tar.gz |
LONGSIZE used before it is set in config.h
Message-Id: <9903032317.AA23021@icgned.icgroup.nl>
p4raw-id: //depot/perl@3068
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/config_h.SH b/config_h.SH index 7429fe0cc3..c0f032032b 100644 --- a/config_h.SH +++ b/config_h.SH @@ -1076,6 +1076,22 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- #define MEM_ALIGNBYTES $alignbytes #endif +/* 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 /**/ + /* BYTEORDER: * This symbol holds the hexadecimal constant defined in byteorder, * i.e. 0x1234 or 0x4321, etc... @@ -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 |