shithub: purgatorio

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

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

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