brintos

brintos / llvm-project-archived public Read only

0
0
Text · 235 B · 9b42916 Raw
17 lines · plain
1module cstd [system] {2  // Only in system headers directory3  module stdio {4    header "stdio.h"5  }6 7  module pthread {8    header "pthread.h"9    export *10 11    module impl {12      header "pthread_impl.h"13      export *14    }15  }16}17