shithub: npe

ref: 85aac117f40895565f61eb703055a29df3c7539f
dir: /libnpe/exp2.c/

View raw version
#include <math.h>
#include "_npe.h"

double
exp2(double x)
{
	static double ln2c = 0.0;
	if(ln2c == 0.0)
		ln2c = log(2.0);
	return exp(x*ln2c);
}