blob: 5b6fab6a870b0be5c68bc1510c83053abea90292 [file] [log] [blame]
Sebastian Pop9ec60df2012-01-20 22:01:23 +00001// RUN: %clang -target x86_64-unknown-unknown \
Daniel Dunbar92d6d402011-10-11 18:20:16 +00002// RUN: -nostdlibinc -ffreestanding -fsyntax-only %s
3
4#if !__has_include("stddef.h")
5#error "expected to be able to find compiler builtin headers!"
6#endif
7
8#if __has_include("stdlib.h")
9#error "expected to *not* be able to find standard C headers"
10#endif