| 693 | printf (pformat, arg); |
| 694 | } |
| 695 | static int |
| 696 | out_int (char *pformat, size_t prefix_len, intmax_t arg) |
| 697 | { |
| 698 | make_format (pformat, prefix_len, "'-+ 0", "jd"); |
| 699 | return printf (pformat, arg); |
| 700 | } |
| 701 | static int |
| 702 | out_uint (char *pformat, size_t prefix_len, uintmax_t arg) |
| 703 | { |
no test coverage detected