code: purgatorio

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

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

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