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

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

#include "map.h"

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

int (*sinusoidal())()
{
	return(Xsinusoidal);
}