| 705 | return printf (pformat, arg); |
| 706 | } |
| 707 | static void |
| 708 | out_uint_o (char *pformat, size_t prefix_len, uintmax_t arg) |
| 709 | { |
| 710 | make_format (pformat, prefix_len, "-#0", "jo"); |
| 711 | printf (pformat, arg); |
| 712 | } |
| 713 | static void |
| 714 | out_uint_x (char *pformat, size_t prefix_len, uintmax_t arg) |
| 715 | { |
no test coverage detected