| 754 | */ |
| 755 | |
| 756 | void |
| 757 | vesa_gotoloc(int col, int row) |
| 758 | { |
| 759 | curcol = min(col, CO - 1); /* protection from callers */ |
| 760 | currow = min(row, LI - 1); |
| 761 | } |
| 762 | |
| 763 | #if defined(TILES_IN_GLYPHMAP) && defined(CLIPPING) |
| 764 | static void |
no outgoing calls
no test coverage detected