git: purgatorio

ref: 7975eec3e602fd5bc3e93c78f4166259190f2fe9
dir: /libmath/pow10.c/

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

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