summaryrefslogtreecommitdiff
path: root/uconfig.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-01-12 21:20:43 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-01-12 21:20:43 +0000
commit159fae8683b83dc912387cb2a410104f03ac93ef (patch)
tree5ca3d324ff003d744b4546944e66c3f666ba18ff /uconfig.h
parent0844c848650aa2551dce1a55f02e43855fb98df9 (diff)
downloadperl-159fae8683b83dc912387cb2a410104f03ac93ef.tar.gz
Use UVXf.
p4raw-id: //depot/perl@8426
Diffstat (limited to 'uconfig.h')
-rw-r--r--uconfig.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/uconfig.h b/uconfig.h
index 03bffe2027..93b7d35696 100644
--- a/uconfig.h
+++ b/uconfig.h
@@ -2810,6 +2810,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.
@@ -2826,6 +2830,7 @@
#define UVuf "lu" /**/
#define UVof "lo" /**/
#define UVxf "lx" /**/
+#define UVXf "lX" /**/
#define NVef "e" /**/
#define NVff "f" /**/
#define NVgf "g" /**/