changed the library name
[unix-history] / usr / src / lib / libplot / dumb / erase.c
CommitLineData
5323a336
RC
1#ifndef lint
2static char sccsid[] = "@(#)erase.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "dumb.h"
6
7erase()
8{
9 register int i, j;
10
11 for(i=0;i<COLS;i++)
12 for(j=0;j<LINES;j++)
13 screenmat[i][j] = ' ';
14}