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