xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/explicit-build/c.h (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1 #include "b.h"
2 
3 #if !__building_module(c)
4 #error "should only get here when building module c"
5 #endif
6 
7 const int c = 3;
8