summaryrefslogtreecommitdiff
path: root/include/module.modulemap
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2016-12-06 09:41:50 +0000
committerEric Fiselier <eric@efcs.ca>2016-12-06 09:41:50 +0000
commit1d801988a7fe683828ec64578f1ee6700ef39661 (patch)
treebce97266b8471a97f8bd2b68b7d4be90d7856809 /include/module.modulemap
parent7a6fabad1cae28a605b78a032e3e3540772873ae (diff)
Add missing stdbool.h module. The test suite now passes on OS X with modules
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@288787 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/module.modulemap')
-rw-r--r--include/module.modulemap5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/module.modulemap b/include/module.modulemap
index 13fa4993f..0485c2a7c 100644
--- a/include/module.modulemap
+++ b/include/module.modulemap
@@ -40,7 +40,10 @@ module std [system] {
// FIXME: <stdalign.h> is missing.
// <signal.h> provided by C library.
// <stdarg.h> provided by compiler.
- // <stdbool.h> provided by compiler.
+ module stdbool_h {
+ header "stdbool.h"
+ export *
+ }
module stddef_h {
// <stddef.h>'s __need_* macros require textual inclusion.
textual header "stddef.h"