code: 9ferno

ref: 6b9b01c4efb785704a8a5bff92d11250cb284c11
dir: /libmath/pow10.c/

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

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