code: 9ferno

ref: 9caa23473750add17fb5cfff374c0a41fa137104
dir: /libmath/pow10.c/

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

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