git: purgatorio

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

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

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