shithub: purgatorio

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

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

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