diff options
author | Abigail <abigail@abigail.be> | 2000-08-15 04:06:38 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-18 02:02:12 +0000 |
commit | 6b4667fc1b974ce7a433cfefaaba43c525667a61 (patch) | |
tree | 3d2bbafa79dc9138513e6e3539bd3b4b1098ed43 /config_h.SH | |
parent | 2b899b4a6ad0a96c47e1bf92850882725a1127e9 (diff) | |
download | perl-6b4667fc1b974ce7a433cfefaaba43c525667a61.tar.gz |
Introduce NVef, NVff, and NVgf, use the middle one.
(helps for lib/peek + Linux + long doubles) Reported in
Subject: [ID 20000814.005] Not OK: perl v5.6.0 on i686-linux-64int 2.2.13
Message-Id: <20000815040638.8524.qmail@foad.org>
(note: the lib/complex failure has not yet been addressed)
p4raw-id: //depot/perl@6685
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/config_h.SH b/config_h.SH index e66e0c5ed0..c186dfd850 100644 --- a/config_h.SH +++ b/config_h.SH @@ -2752,12 +2752,27 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un */ /* UVxf: * This symbol defines the format string used for printing a Perl UV - * as an unsigned hexadecimal integer. + * as an unsigned hexadecimal integer in lowercase abcdef. + */ +/* NVef: + * This symbol defines the format string used for printing a Perl NV + * using %e-ish floating point format. + */ +/* NVff: + * This symbol defines the format string used for printing a Perl NV + * using %f-ish floating point format. + */ +/* NVgf: + * This symbol defines the format string used for printing a Perl NV + * using %g-ish floating point format. */ #define IVdf $ivdformat /**/ #define UVuf $uvuformat /**/ #define UVof $uvoformat /**/ #define UVxf $uvxformat /**/ +#define NVef $nveformat /**/ +#define NVff $nvfformat /**/ +#define NVgf $nvgformat /**/ /* Pid_t: * This symbol holds the type used to declare process ids in the kernel. |