shithub: npe

ref: 7944a8444f40c267b9f622bfbe7f835115f8155a
dir: /libnpe/exp2.c/

View raw version
#include <math.h>

#define ln2o1 1.4426950408889634073599

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