1*f4a2713aSLionel Sambuc // RUN: %clang -target x86_64-unknown-unknown \ 2*f4a2713aSLionel Sambuc // RUN: -nostdlibinc -ffreestanding -fsyntax-only %s 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc #if !__has_include("stddef.h") 5*f4a2713aSLionel Sambuc #error "expected to be able to find compiler builtin headers!" 6*f4a2713aSLionel Sambuc #endif 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc #if __has_include("stdlib.h") 9*f4a2713aSLionel Sambuc #error "expected to *not* be able to find standard C headers" 10*f4a2713aSLionel Sambuc #endif 11