brintos

brintos / llvm-project-archived public Read only

0
0
Text · 229 B · 223434a Raw
19 lines · plain
1module stdlib [system] {2    header "stl_map.h"3    header "vector"4 }5 6module libCore {7  header "SecondHeader.h"8    use stdlib9  export *10}11 12module libGdml {13  header "FirstHeader.h"14  use libCore15    use stdlib16  export *17}18 19