git: purgatorio

ref: a3cd9d6083f95a7442935c6f623c7655447215a4
dir: /libmath/pow10.c/

View raw version
#include "lib9.h"
#include "mathi.h"

double
ipow10(int n)
{
	return pow(10.,n);
}