git: purgatorio

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

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

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