diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-12 21:20:43 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-12 21:20:43 +0000 |
commit | 159fae8683b83dc912387cb2a410104f03ac93ef (patch) | |
tree | 5ca3d324ff003d744b4546944e66c3f666ba18ff /vos | |
parent | 0844c848650aa2551dce1a55f02e43855fb98df9 (diff) | |
download | perl-159fae8683b83dc912387cb2a410104f03ac93ef.tar.gz |
Use UVXf.
p4raw-id: //depot/perl@8426
Diffstat (limited to 'vos')
-rw-r--r-- | vos/config.alpha.def | 1 | ||||
-rw-r--r-- | vos/config.alpha.h | 5 | ||||
-rw-r--r-- | vos/config.ga.def | 1 | ||||
-rw-r--r-- | vos/config.ga.h | 5 |
4 files changed, 12 insertions, 0 deletions
diff --git a/vos/config.alpha.def b/vos/config.alpha.def index b5d5323f46..1ec2d9167c 100644 --- a/vos/config.alpha.def +++ b/vos/config.alpha.def @@ -488,6 +488,7 @@ $uvsize='4' $uvtype='unsigned int' $uvuformat='"u"' $uvxformat='"x"' +$uvXUformat='"X"' $vendorarch='' $vendorarchexp='' $vendorlib_stem='' diff --git a/vos/config.alpha.h b/vos/config.alpha.h index 51488ab464..7b21420a6d 100644 --- a/vos/config.alpha.h +++ b/vos/config.alpha.h @@ -2795,6 +2795,10 @@ * This symbol defines the format string used for printing a Perl UV * as an unsigned hexadecimal integer in lowercase abcdef. */ +/* UVXf: + * This symbol defines the format string used for printing a Perl UV + * as an unsigned hexadecimal integer in uppercase ABCDEF. + */ /* NVef: * This symbol defines the format string used for printing a Perl NV * using %e-ish floating point format. @@ -2811,6 +2815,7 @@ #define UVuf "u" /**/ #define UVof "o" /**/ #define UVxf "x" /**/ +#define UVXf "X" /**/ #define NVef "e" /**/ #define NVff "f" /**/ #define NVgf "g" /**/ diff --git a/vos/config.ga.def b/vos/config.ga.def index 51a90a473e..ab57e08832 100644 --- a/vos/config.ga.def +++ b/vos/config.ga.def @@ -488,6 +488,7 @@ $uvsize='4' $uvtype='unsigned int' $uvuformat='"u"' $uvxformat='"x"' +$uvXUformat='"X"' $vendorarch='' $vendorarchexp='' $vendorlib_stem='' diff --git a/vos/config.ga.h b/vos/config.ga.h index 5ba21bb7e3..2a89a1e3bc 100644 --- a/vos/config.ga.h +++ b/vos/config.ga.h @@ -2795,6 +2795,10 @@ * This symbol defines the format string used for printing a Perl UV * as an unsigned hexadecimal integer in lowercase abcdef. */ +/* UVXf: + * This symbol defines the format string used for printing a Perl UV + * as an unsigned hexadecimal integer in uppercase ABCDEF. + */ /* NVef: * This symbol defines the format string used for printing a Perl NV * using %e-ish floating point format. @@ -2811,6 +2815,7 @@ #define UVuf "u" /**/ #define UVof "o" /**/ #define UVxf "x" /**/ +#define UVXf "X" /**/ #define NVef "e" /**/ #define NVff "f" /**/ #define NVgf "g" /**/ |