| 448 | */ |
| 449 | |
| 450 | void |
| 451 | vga_gotoloc(int col, int row) |
| 452 | { |
| 453 | curcol = min(col, CO - 1); /* protection from callers */ |
| 454 | currow = min(row, LI - 1); |
| 455 | } |
| 456 | |
| 457 | #if defined(TILES_IN_GLYPHMAP) && defined(CLIPPING) |
| 458 | static void |
no outgoing calls
no test coverage detected