code: 9ferno

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

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

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