blob: f80523dc80f4feda5e8180effd51d876d944ba0c [file] [log] [blame]
// PR c++/48369
extern "C" int isnan (double);
void f(double d)
{
bool b = isnan(d);
}