1 #ifndef lint 2 static char sccsid[] = "@(#)space.c 4.1 (Berkeley) 06/27/83"; 3 #endif 4 5 #include <stdio.h> 6 space(x0,y0,x1,y1){ 7 putc('s',stdout); 8 putsi(x0); 9 putsi(y0); 10 putsi(x1); 11 putsi(y1); 12 } 13