1 #include <math.h>
2 #include "headers/frexpf.h"
3 
frexpf(float x,int * pexp)4 float frexpf(float x, int *pexp)
5 {
6     return _frexpf(x, pexp);
7 }
8