1*48520Sbostic /*- 2*48520Sbostic * Copyright (c) 1983 The Regents of the University of California. 3*48520Sbostic * All rights reserved. 4*48520Sbostic * 5*48520Sbostic * %sccs.include.proprietary.c% 6*48520Sbostic */ 7*48520Sbostic 813409Ssam #ifndef lint 9*48520Sbostic static char sccsid[] = "@(#)space.c 4.2 (Berkeley) 04/22/91"; 10*48520Sbostic #endif /* not lint */ 1113409Ssam 1213409Ssam #include <stdio.h> 1313409Ssam space(x0,y0,x1,y1){ 1413409Ssam putc('s',stdout); 1513409Ssam putsi(x0); 1613409Ssam putsi(y0); 1713409Ssam putsi(x1); 1813409Ssam putsi(y1); 1913409Ssam } 20