diff options
Diffstat (limited to 'libcxx/include/module.modulemap')
| -rw-r--r-- | libcxx/include/module.modulemap | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap index bcf4632d854..ce126609dc0 100644 --- a/libcxx/include/module.modulemap +++ b/libcxx/include/module.modulemap @@ -45,7 +45,13 @@ module std [system] { // <stddef.h>'s __need_* macros require textual inclusion. textual header "stddef.h" } - // FIXME: <stdint.h> is missing. + module stdint_h { + header "stdint.h" + export * + // FIXME: This module only exists on OS X and for some reason the + // wildcard above doesn't export it. + export Darwin.C.stdint + } module stdio_h { // <stdio.h>'s __need_* macros require textual inclusion. textual header "stdio.h" @@ -158,6 +164,7 @@ module std [system] { } module cstdint { header "cstdint" + export depr.stdint_h export * } module cstdio { |

