shithub: npe

ref: 8d59ff3b29f759e550dc421b8cd14d96b83b5001
dir: /libnpe/exp2.c/

View raw version
#include <math.h>

#define ln2o1 1.4426950408889634073599

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