summaryrefslogtreecommitdiff
path: root/clang/test/Modules/Inputs/System/usr/include/module.map
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Modules/Inputs/System/usr/include/module.map')
-rw-r--r--clang/test/Modules/Inputs/System/usr/include/module.map21
1 files changed, 21 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/System/usr/include/module.map b/clang/test/Modules/Inputs/System/usr/include/module.map
new file mode 100644
index 0000000..884b59c
--- /dev/null
+++ b/clang/test/Modules/Inputs/System/usr/include/module.map
@@ -0,0 +1,21 @@
+module cstd [system] {
+ // Only in compiler support directory
+ module float_constants {
+ header "float.h"
+ }
+
+ // Only in system headers directory
+ module stdio {
+ header "stdio.h"
+ }
+
+ // In both directories (compiler support version wins, does not forward)
+ module stdbool {
+ header "stdbool.h"
+ }
+
+ // In both directories (compiler support version wins, forwards)
+ module stdint {
+ header "stdint.h"
+ }
+}