xref: /csrg-svn/lib/libplot/imagen/erase.c (revision 61397)
148519Sbostic /*-
2*61397Sbostic  * Copyright (c) 1985, 1993
3*61397Sbostic  *	The Regents of the University of California.  All rights reserved.
448519Sbostic  *
548519Sbostic  * %sccs.include.proprietary.c%
624994Ssam  */
724994Ssam 
824994Ssam #ifndef lint
9*61397Sbostic static char sccsid[] = "@(#)erase.c	8.1 (Berkeley) 06/04/93";
1048519Sbostic #endif /* not lint */
1124994Ssam 
1224994Ssam #include "imPcodes.h"
1324994Ssam #include "imp.h"
erase()1424994Ssam erase(){
1524994Ssam 	int i;
1624994Ssam 		putch(imP_ENDPAGE);
1724994Ssam 		imPx = imPy = 0;
1824994Ssam 		return;
1924994Ssam }
20