brintos

brintos / llvm-project-archived public Read only

0
0
Text · 494 B · f9f3287 Raw
16 lines · c
1#ifndef A_SYSTEM_H2#define A_SYSTEM_H3 4// FIXME: We have to use this to mark the header as a system header in5// a module because header search didn't actually occur and so we can't have6// found the header via system header search, even though when we map to this7// header and load the module we will have mapped to the header by finding it8// via system header search.9#pragma GCC system_header10 11#define FOO1_SYSTEM(x) x + x12#define BAR1_SYSTEM(x) x + x13#define BAZ1_SYSTEM(x) x + x14 15#endif16