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 /Porting/config_H | |
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 'Porting/config_H')
-rw-r--r-- | Porting/config_H | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/Porting/config_H b/Porting/config_H index 88e796716f..7053239636 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : /m/fs/work/work/permanent/perl/pp4/perl - * Configuration time: Thu Aug 17 02:55:55 EET DST 2000 + * Configuration time: Fri Aug 18 04:57:25 EET DST 2000 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -2732,12 +2732,27 @@ */ /* 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 "ld" /**/ #define UVuf "lu" /**/ #define UVof "lo" /**/ #define UVxf "lx" /**/ +#define NVef "e" /**/ +#define NVff "f" /**/ +#define NVgf "g" /**/ /* Pid_t: * This symbol holds the type used to declare process ids in the kernel. |