blob: 2e745657333d2e70ef628d8b95cd14e3249ed273 [file] [log] [blame]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#include <math.h>
int ilogbl(long double x)
{
return ilogb(x);
}