summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/math/frexpf.c
blob: df262abc558c2696741e03a3dc6ea554f69c5028 (plain)
1
2
3
#include <math.h>
float frexpf (float x, int* expn)
  {return (float)frexp(x, expn);}