| 717 | printf (pformat, arg); |
| 718 | } |
| 719 | static int |
| 720 | out_minus_zero (char *pformat, size_t prefix_len) |
| 721 | { |
| 722 | make_format (pformat, prefix_len, "'-+ 0", ".0f"); |
| 723 | return printf (pformat, -0.25); |
| 724 | } |
| 725 | |
| 726 | /* Output the number of seconds since the Epoch, using a format that |
| 727 | acts like printf's %f format. */ |
no test coverage detected