code: purgatorio

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

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

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