| 711 | printf (pformat, arg); |
| 712 | } |
| 713 | static void |
| 714 | out_uint_x (char *pformat, size_t prefix_len, uintmax_t arg) |
| 715 | { |
| 716 | make_format (pformat, prefix_len, "-#0", "jx"); |
| 717 | printf (pformat, arg); |
| 718 | } |
| 719 | static int |
| 720 | out_minus_zero (char *pformat, size_t prefix_len) |
| 721 | { |
no test coverage detected