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

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