| 699 | return printf (pformat, arg); |
| 700 | } |
| 701 | static int |
| 702 | out_uint (char *pformat, size_t prefix_len, uintmax_t arg) |
| 703 | { |
| 704 | make_format (pformat, prefix_len, "'-0", "ju"); |
| 705 | return printf (pformat, arg); |
| 706 | } |
| 707 | static void |
| 708 | out_uint_o (char *pformat, size_t prefix_len, uintmax_t arg) |
| 709 | { |
no test coverage detected