xref: /llvm-project/clang/test/Modules/Inputs/libc-libcxx/sysroot/usr/include/c++/v1/module.modulemap (revision ba1b5c98ba941b4382fc26bcf6b410c3120c22d9)
1module "libc++" {
2  module math { header "math.h" export * }
3  module stdlib { header "stdlib.h" export * }
4  module stddef { header "stddef.h" export * }
5  module stdio { textual header "stdio.h" export * }
6  // FIXME: remove "textual" from stdint module below once the issue
7  // between umbrella headers and builtins is resolved.
8  module stdint { textual header "stdint.h" export * }
9  module type_traits { header "type_traits" export * }
10  module cstddef { header "cstddef" export * }
11  module __config { header "__config" export * }
12}
13