/* xnormaldist.c */

#include <stdio.h>
#include "normaldist.h"

int main()
{
	double x;
	
	for (x=-3.2; x<=3.21; x+=0.1)
		printf("%4.1f  %8.6f\n", x, normal_dist (x));
}
