code: 9ferno

ref: 0f94bdc449f63dd656bc5b723e0305a0d93f2271
dir: /libmath/pow10.c/

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

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