1*24994Ssam /* 2*24994Ssam * Copyright (c) 1985 Regents of the University of California. 3*24994Ssam * All rights reserved. The Berkeley software License Agreement 4*24994Ssam * specifies the terms and conditions for redistribution. 5*24994Ssam */ 6*24994Ssam 7*24994Ssam #ifndef lint 8*24994Ssam static char sccsid[] = "@(#)erase.c 5.1 (Berkeley) 09/21/85"; 9*24994Ssam #endif not lint 10*24994Ssam 11*24994Ssam #include "imPcodes.h" 12*24994Ssam #include "imp.h" 13*24994Ssam erase(){ 14*24994Ssam int i; 15*24994Ssam putch(imP_ENDPAGE); 16*24994Ssam imPx = imPy = 0; 17*24994Ssam return; 18*24994Ssam } 19