diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-01-16 19:12:58 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-01-16 19:12:58 +0000 |
commit | 76d49b1cacfde5868001c5aa0ec48417c762179b (patch) | |
tree | fdcba8f645cfa2d31ddc4615ac1216fcb30928c8 /Porting | |
parent | 747afe9f72bf33257cdb451a75c2349469736b92 (diff) | |
download | perl-76d49b1cacfde5868001c5aa0ec48417c762179b.tar.gz |
Know strtoll.
p4raw-id: //depot/cfgperl@4808
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 4 | ||||
-rw-r--r-- | Porting/config.sh | 5 | ||||
-rw-r--r-- | Porting/config_H | 8 |
3 files changed, 14 insertions, 3 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 1bd313b9a3..bde26b736a 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -1402,6 +1402,10 @@ d_strtold (d_strtold.U): This variable conditionally defines the HAS_STRTOLD symbol, which indicates to the C program that the strtold() routine is available. +d_strtoll (d_strtoll.U): + This variable conditionally defines the HAS_STRTOLL symbol, which + indicates to the C program that the strtoll() routine is available. + d_strtoul (d_strtoul.U): This variable conditionally defines the HAS_STRTOUL symbol, which indicates to the C program that the strtoul() routine is available diff --git a/Porting/config.sh b/Porting/config.sh index 40c49ca417..eebf57fe62 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -8,7 +8,7 @@ # Package name : perl5 # Source directory : . -# Configuration time: Sun Jan 16 18:32:10 EET 2000 +# Configuration time: Sun Jan 16 21:10:53 EET 2000 # Configured by : jhi # Target system : osf1 alpha.hut.fi v4.0 878 alpha @@ -59,7 +59,7 @@ ccflags='-pthread -std -DLANGUAGE_C' ccsymbols='__LANGUAGE_C__=1 _LONGLONG=1 LANGUAGE_C=1 SYSTYPE_BSD=1' cf_by='jhi' cf_email='yourname@yourhost.yourplace.com' -cf_time='Sun Jan 16 18:32:10 EET 2000' +cf_time='Sun Jan 16 21:10:53 EET 2000' charsize='1' chgrp='' chmod='' @@ -321,6 +321,7 @@ d_strerror='define' d_strtod='define' d_strtol='define' d_strtold='undef' +d_strtoll='undef' d_strtoul='define' d_strtoull='undef' d_strtouq='undef' diff --git a/Porting/config_H b/Porting/config_H index 858c3a4f0c..94007e9e3c 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Sun Jan 16 18:32:10 EET 2000 + * Configuration time: Sun Jan 16 21:10:53 EET 2000 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -1961,6 +1961,12 @@ */ /*#define HAS_STRTOLD / **/ +/* HAS_STRTOLL: + * This symbol, if defined, indicates that the strtoll routine is + * available to convert strings to long longs. + */ +/*#define HAS_STRTOLL / **/ + /* HAS_STRTOULL: * This symbol, if defined, indicates that the strtoull routine is * available to convert strings to unsigned long longs. |