code: purgatorio

ref: 63392be12a1a657419af2d2966995428721f18f3
dir: /libmath/pow10.c/

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

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