brintos

brintos / llvm-project-archived public Read only

0
0
Text · 305 B · 5b6fab6 Raw
11 lines · c
1// RUN: %clang -target x86_64-unknown-unknown \2// RUN:   -nostdlibinc -ffreestanding -fsyntax-only %s3 4#if !__has_include("stddef.h")5#error "expected to be able to find compiler builtin headers!"6#endif7 8#if __has_include("stdlib.h")9#error "expected to *not* be able to find standard C headers"10#endif11