llvm-project/clang/test/Modules/Inputs/builtin-headers/builtin-modules.modulemap
Ian Anderson 4ee8c676ee
[Modules] no_undeclared_includes modules (Apple Darwin) don't work the clang modules (#68241)
All of the _Builtin_stdarg and _Builtin_stddef submodules need to be
allowed from [no_undeclared_includes] modules. Split the builtin headers
tests out from the compiler_builtins test so that the testing modules
can be modified without affecting the other many tests that use
Inputs/System/usr/include.
2023-10-04 15:43:17 -07:00

30 lines
365 B
Plaintext

module c_complex [system] {
header "complex.h"
export *
}
module c_float [system] {
header "float.h"
export *
}
module c_inttypes [system] {
header "inttypes.h"
export *
}
module c_limits [system] {
header "limits.h"
export *
}
module c_math [system] {
header "math.h"
export *
}
module c_stdint [system] {
header "stdint.h"
export *
}