xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/macro-hiding/module.modulemap (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambucmodule a {
2*0a6a1f1dSLionel Sambuc  module a1 { header "a1.h" export * }
3*0a6a1f1dSLionel Sambuc  module a2 { header "a2.h" export * }
4*0a6a1f1dSLionel Sambuc}
5*0a6a1f1dSLionel Sambucmodule b {
6*0a6a1f1dSLionel Sambuc  module b1 { header "b1.h" export * }
7*0a6a1f1dSLionel Sambuc  module b2 { header "b2.h" export * }
8*0a6a1f1dSLionel Sambuc}
9*0a6a1f1dSLionel Sambucmodule c {
10*0a6a1f1dSLionel Sambuc  module c1 { header "c1.h" export * }
11*0a6a1f1dSLionel Sambuc}
12*0a6a1f1dSLionel Sambucmodule d {
13*0a6a1f1dSLionel Sambuc  module d1 { header "d1.h" export * }
14*0a6a1f1dSLionel Sambuc}
15*0a6a1f1dSLionel Sambucmodule e {
16*0a6a1f1dSLionel Sambuc  module e1 { header "e1.h" export * }
17*0a6a1f1dSLionel Sambuc  module e2 { header "e2.h" export * }
18*0a6a1f1dSLionel Sambuc}
19