ref: af064114fd7e744e3af0cc67478aab670b5d13c6 dir: /libnpe/exp2.c/
#include <math.h> #define ln2o1 1.4426950408889634073599 double exp2(double x) { return exp(x/ln2o1); }