code: 9ferno

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

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

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