Files
clang-p2996/clang/test/Modules/Inputs/libc-libcxx/sysroot/usr/include/module.modulemap
Benjamin Kramer ae8de9bc75 Remove non-existing file from modulemap.
This picked up a builtin header if it happened to be available.

llvm-svn: 284815
2016-10-21 10:19:37 +00:00

9 lines
313 B
Plaintext

module libc [no_undeclared_includes] {
module math { header "math.h" export * }
module stdlib { header "stdlib.h" export * }
module stddef { header "stddef.h" export * }
module stdint { header "stdint.h" export * }
module stdio { header "stdio.h" export * }
module util { header "util.h" export * }
}