summaryrefslogtreecommitdiff
path: root/uconfig.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-08-18 05:10:26 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-18 05:10:26 +0000
commitfd47df604ae845e152c047b6ef809e0ea6602d04 (patch)
treebce601d731d06415bb69456582405ced6f6f4178 /uconfig.h
parenteae4ae263c0b84d48420dbcaad4130ba7ca74ba8 (diff)
downloadperl-fd47df604ae845e152c047b6ef809e0ea6602d04.tar.gz
Propagate new Configure vars.
p4raw-id: //depot/perl@6691
Diffstat (limited to 'uconfig.h')
-rw-r--r--uconfig.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/uconfig.h b/uconfig.h
index 0e209cd94d..1377c3bce2 100644
--- a/uconfig.h
+++ b/uconfig.h
@@ -2728,12 +2728,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.