newlib/winsup/mingw/mingwex/math/expf.c

4 lines
67 B
C

#include <math.h>
float expf (float x)
{return (float) exp (x);}