//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // Sometimes C++'s headers get included within extern "C" contexts. This // is ill-formed (no diagnostic required), per [using.headers]p3, but we permit // it as an extension. extern "C" { #include // complex.h is not supported in extern "C". #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // tgmath.h is not supported in extern "C". #include // FIXME: #include #include #include } int main() {}