1 #include <math.h>
2 #include "headers/ilogb.h"
3 
ilogb(double x)4 int ilogb(double x)
5 {
6     return _ilogb(x);
7 }
8