code: 9ferno

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

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

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