shithub: purgatorio

ref: 0644aa11c120a581eec1d47c66208e08b946ec08
dir: /libmath/pow10.c/

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

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