Add missing stdbool.h module. The test suite now passes on OS X with modules

llvm-svn: 288787
This commit is contained in:
Eric Fiselier 2016-12-06 09:41:50 +00:00
parent dcd2748a34
commit d9cbffb0df
1 changed files with 4 additions and 1 deletions

View File

@ -40,7 +40,10 @@ module std [system] {
// FIXME: <stdalign.h> is missing. // FIXME: <stdalign.h> is missing.
// <signal.h> provided by C library. // <signal.h> provided by C library.
// <stdarg.h> provided by compiler. // <stdarg.h> provided by compiler.
// <stdbool.h> provided by compiler. module stdbool_h {
header "stdbool.h"
export *
}
module stddef_h { module stddef_h {
// <stddef.h>'s __need_* macros require textual inclusion. // <stddef.h>'s __need_* macros require textual inclusion.
textual header "stddef.h" textual header "stddef.h"