code: 9ferno

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

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

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