git: purgatorio

ref: 4a1fc5ccb596a0f88f465b81a638f0068e82f0b9
dir: /libmath/pow10.c/

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

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