(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
isnan.C
// PR c++/48369

extern "C" int isnan (double);

void f(double d)
{
    bool b = isnan(d);
}