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

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