Files
glest-source/source/shared_lib/sources/streflop/libm/w_expf.c

11 lines
232 B
C

/* The original libm wrapper may call the double implementation
and declares double constants.
This wrapper purely wraps the float version
*/
#include "math_private.h"
float __expf(float x) {
return __ieee754_expf(x);
}