date and time created 85/01/02 20:10:47 by jak
[unix-history] / usr / src / lib / libplot / aed / erase.c
CommitLineData
975100d1
RC
1#ifndef lint
2static char sccsid[] = "@(#)erase.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "aed.h"
6
7/*---------------------------------------------------------
8 * This routine erases the screen.
9 *
10 * Results: None.
11 * Side Effects: The screen is cleared.
12 *---------------------------------------------------------
13 */
14erase()
15{
16 setcolor("FF");
17 putc('\14', stdout);
18 putc('\33', stdout);
19 putc('Q', stdout);
20 outxy20(curx, cury);
21 (void) fflush(stdout);
22}