[clang][lex] NFCI: Use DirectoryEntryRef in ModuleMap::inferFrameworkModule()
[llvm-project.git] / clang / test / Misc / no-warn-in-system-macro.c.inc
blob3cbe7dfc1602e0a6a0938958ee8b7fcee7e75fcd
1 extern int __isnanf(float f);
2 extern int __isnan(double f);
3 extern int __isnanl(long double f);
4 #define isnan(x) \
5         (sizeof (x) == sizeof (float)                \
6         ? __isnanf (x)                    \
7         : sizeof (x) == sizeof (double)               \
8         ? __isnan (x) : __isnanl (x))