xref: /llvm-project/clang/test/Modules/Inputs/libc-libcxx/sysroot/usr/include/module.modulemap (revision ba1b5c98ba941b4382fc26bcf6b410c3120c22d9)
1module libc [no_undeclared_includes] {
2  module math { header "math.h" export * }
3  module stdlib { header "stdlib.h" export * }
4  module stddef { header "stddef.h" export * }
5  module stdint { header "stdint.h" export * }
6  module stdio { header "stdio.h" export * }
7  module util { header "util.h" export * }
8  module POSIX {
9    module sys {
10      module types {
11        umbrella header "sys/_types/_types.h"
12        export *
13      }
14    }
15  }
16}
17