xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/PR20399/module.modulemap (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambucmodule stdlib [system] {
2*0a6a1f1dSLionel Sambuc    header "stl_map.h"
3*0a6a1f1dSLionel Sambuc    header "vector"
4*0a6a1f1dSLionel Sambuc }
5*0a6a1f1dSLionel Sambuc
6*0a6a1f1dSLionel Sambucmodule libCore {
7*0a6a1f1dSLionel Sambuc  header "SecondHeader.h"
8*0a6a1f1dSLionel Sambuc    use stdlib
9*0a6a1f1dSLionel Sambuc  export *
10*0a6a1f1dSLionel Sambuc}
11*0a6a1f1dSLionel Sambuc
12*0a6a1f1dSLionel Sambucmodule libGdml {
13*0a6a1f1dSLionel Sambuc  header "FirstHeader.h"
14*0a6a1f1dSLionel Sambuc  use libCore
15*0a6a1f1dSLionel Sambuc    use stdlib
16*0a6a1f1dSLionel Sambuc  export *
17*0a6a1f1dSLionel Sambuc}
18*0a6a1f1dSLionel Sambuc
19