code: 9ferno

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

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

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