code: 9ferno

ref: 7b25c99c9e963cd16dd3910190eaaf10dbffdd7d
dir: /libmath/pow10.c/

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

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