git: purgatorio

ref: 11cf56ca795f3db5191ad457732c77f918618dd3
dir: /libmath/pow10.c/

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

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