Welcome to mirror list, hosted at ThFree Co, Russian Federation.

expf.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e56e0bc6ee3154806688315fca62eadc53357ed9 (plain)
1
2
3
#include <math.h>
float expf (float x)
  {return (float) exp (x);}