kolibrios/programs/develop/libraries/newlib/math/expf.c

4 lines
70 B
C
Raw Normal View History

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