shithub: npe

ref: ac5e2726dfed47e8aec9ca165323c26bdbc9d926
dir: /libnpe/exp2.c/

View raw version
#include <math.h>

#define ln2o1 1.4426950408889634073599

double
exp2(double x)
{
	return exp(x/ln2o1);
}