V8/usr/src/cmd/map/libmap/rectangular.c

Compare this file to the similar file:
Show the results in this format:

#include "map.h"

Xrectangular(place, x, y)
struct place *place;
float *x, *y;
{
	*x = -place->wlon.l;
	*y = place->nlat.l;
	return(1);
}

int (*rectangular())()
{
	return(Xrectangular);
}