git: purgatorio

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

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

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