xref: /csrg-svn/lib/libplot/hp2648/erase.c (revision 61393)
148517Sbostic /*-
2*61393Sbostic  * Copyright (c) 1980, 1993
3*61393Sbostic  *	The Regents of the University of California.  All rights reserved.
448517Sbostic  *
548517Sbostic  * %sccs.include.proprietary.c%
619975Sdist  */
719975Sdist 
815450Sralph #ifndef lint
9*61393Sbostic static char sccsid[] = "@(#)erase.c	8.1 (Berkeley) 06/04/93";
1048517Sbostic #endif /* not lint */
1115450Sralph 
1215450Sralph #include "hp2648.h"
1315450Sralph 
erase()1415450Sralph erase()
1515450Sralph {
1615450Sralph 	buffready(8);
1715450Sralph 	putchar(ESC);
1815450Sralph 	putchar(GRAPHIC);
1915450Sralph 	putchar(DISPLAY);
2015450Sralph 	putchar('a');
2115450Sralph 	putchar(ESC);
2215450Sralph 	putchar(GRAPHIC);
2315450Sralph 	putchar(PLOT);
2415450Sralph 	putchar(BINARY);
2515450Sralph }
26