1*19971Sdist /* 2*19971Sdist * Copyright (c) 1980 Regents of the University of California. 3*19971Sdist * All rights reserved. The Berkeley software License Agreement 4*19971Sdist * specifies the terms and conditions for redistribution. 5*19971Sdist */ 6*19971Sdist 715441Sralph #ifndef lint 8*19971Sdist static char sccsid[] = "@(#)space.c 5.1 (Berkeley) 05/07/85"; 9*19971Sdist #endif not lint 1015441Sralph 1115441Sralph #include "dumb.h" 1215441Sralph 1315441Sralph space(x0, y0, x1, y1) 1415441Sralph int x0, y0, x1, y1; 1515441Sralph { 1615441Sralph minX = x0; 1715441Sralph rangeX = x1 -x0; 1815441Sralph minY = y0; 1915441Sralph rangeY = y1 - y0; 2015441Sralph } 21