shithub: npe

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

View raw version
#include <math.h>

#define ln2o1 1.4426950408889634073599

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