code: 9ferno

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

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

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