| 2570 | } |
| 2571 | |
| 2572 | static void |
| 2573 | LINE_BREAK(void) |
| 2574 | { |
| 2575 | if (spacer != '\t') { |
| 2576 | printf("\n"); |
| 2577 | spacer = '\t'; |
| 2578 | } |
| 2579 | col = 8; /* 8-col tab */ |
| 2580 | } |
| 2581 | |
| 2582 | static void |
| 2583 | LINE_CHECK(const char *fmt, ...) |
no test coverage detected