code: 9ferno

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

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

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