git: purgatorio

ref: 15dd600cbd3c242fc1fe283dacc390a823055bc4
dir: /libmath/pow10.c/

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

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