This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[patch] add sv_setref_uv
[perl5.git] / uconfig.h
index 03bffe2..b888415 100644 (file)
--- a/uconfig.h
+++ b/uconfig.h
  *     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.
 #define        UVuf            "lu"            /**/
 #define        UVof            "lo"            /**/
 #define        UVxf            "lx"            /**/
+#define        UVXf            "lX"            /**/
 #define        NVef            "e"             /**/
 #define        NVff            "f"             /**/
 #define        NVgf            "g"             /**/
  *     The last element is 0, corresponding to the 0 at the end of
  *     the sig_name list.
  */
+/* SIG_SIZE:
+ *     This variable contains the number of elements of the sig_name
+ *     and sig_num arrays, excluding the final NULL entry.
+ */
 #define SIG_NAME 0             /**/
 #define SIG_NUM  0             /**/
+#define SIG_SIZE 1                     /**/
 
 /* SITEARCH:
  *     This symbol contains the name of the private library for this package.