xref: /csrg-svn/lib/libplot/f77plot/space.c (revision 22641)
1*22641Sdist /*
2*22641Sdist  * Copyright (c) 1980 Regents of the University of California.
3*22641Sdist  * All rights reserved.  The Berkeley software License Agreement
4*22641Sdist  * specifies the terms and conditions for redistribution.
5*22641Sdist  */
6*22641Sdist 
717639Sjak #ifndef lint
8*22641Sdist static char sccsid[] = "@(#)space.c	5.1 (Berkeley) 06/07/85";
9*22641Sdist #endif not lint
10*22641Sdist 
1117639Sjak space_(x0,y0,x1,y1)
1217639Sjak int *x0, *y0, *x1, *y1;
1317639Sjak {
1417639Sjak 	space(*x0,*y0,*x1,*y1);
1517639Sjak }
16