git: purgatorio

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

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

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