code: 9ferno

ref: 966a5434d9bbbc089bc07b71e158ed165fd64422
dir: /libmath/pow10.c/

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

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