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