Add copyright
[unix-history] / usr / src / lib / libplot / dumb / erase.c
CommitLineData
dca25f5a
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
5323a336 7#ifndef lint
dca25f5a
DF
8static char sccsid[] = "@(#)erase.c 5.1 (Berkeley) %G%";
9#endif not lint
5323a336
RC
10
11#include "dumb.h"
12
13erase()
14{
15 register int i, j;
16
17 for(i=0;i<COLS;i++)
18 for(j=0;j<LINES;j++)
19 screenmat[i][j] = ' ';
20}