shithub: purgatorio

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

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

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