shithub: purgatorio

ref: db1eb844461b07a25ca49117851fa874fd88e065
dir: /libmath/pow10.c/

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

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