#define __TGMATH_H
/* C99 7.22 Type-generic math <tgmath.h>. */
+#if __has_include(<math.h>)
#include <math.h>
/* C++ handles type genericity with overloading in math.h. */
#undef _TG_ATTRS
#endif /* __cplusplus */
+#endif /* __has_include(<math.h>) */
#endif /* __TGMATH_H */
// RUN: rm -rf %t
-// RUN: %clang_cc1 -fmodules -fmodule-cache-path %t %s
+// RUN: %clang_cc1 -fmodules -fmodule-cache-path %t -verify %s
@import __compiler_builtins.float_constants;
char getCharMax() { return CHAR_MAX; }
-// FIXME: Re-enable this test.
-//size_t size; // expected-error{{unknown type name 'size_t'}}
+size_t size; // expected-error{{unknown type name 'size_t'}}