diff options
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/tiformat.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/stdio-common/tiformat.c b/stdio-common/tiformat.c index bce47665a7..4d2eeb3002 100644 --- a/stdio-common/tiformat.c +++ b/stdio-common/tiformat.c @@ -5026,6 +5026,16 @@ sprint_int_type sprint_ints[] = {__LINE__, 0x00000000, "", "%#.0x"}, {__LINE__, 0x00000000, "0", "%#.0o"}, + {__LINE__, 0x00000000, "0", "%Id"}, + {__LINE__, 0x0000000a, "10", "%Id"}, + {__LINE__, 0x000000d2, "210", "%Id"}, + {__LINE__, 0x00000c8a, "3210", "%Id"}, + {__LINE__, 0x0000a8ca, "43210", "%Id"}, + {__LINE__, 0x000849ea, "543210", "%Id"}, + {__LINE__, 0x0063d76a, "6543210", "%Id"}, + {__LINE__, 0x048ff4ea, "76543210", "%Id"}, + {__LINE__, 0x343efcea, "876543210", "%Id"}, + {0}, }; |