| 324 | } |
| 325 | |
| 326 | void |
| 327 | Norep(const char *line, ...) |
| 328 | { |
| 329 | va_list the_args; |
| 330 | |
| 331 | va_start(the_args, line); |
| 332 | gp.pline_flags = PLINE_NOREPEAT; |
| 333 | vpline(line, the_args); |
| 334 | gp.pline_flags = 0; |
| 335 | va_end(the_args); |
| 336 | } |
| 337 | |
| 338 | staticfn char * |
| 339 | You_buf(int siz) |
no test coverage detected