xref: /llvm-project/clang/test/Modules/Inputs/builtin-headers/system-modules.modulemap (revision 4ee8c676ee370f5cd53cb6ac3a9c27c7088f2eae)
1module cstd [system] [no_undeclared_includes] {
2  module complex {
3    header "complex.h"
4    export *
5  }
6
7  module float {
8    header "float.h"
9    export *
10  }
11
12  module inttypes {
13    header "inttypes.h"
14    export *
15  }
16
17  module iso646 {
18    header "iso646.h"
19    export *
20  }
21
22  module limits {
23    header "limits.h"
24    export *
25  }
26
27  module math {
28    header "math.h"
29    export *
30  }
31
32  module stdalign {
33    header "stdalign.h"
34    export *
35  }
36
37  module stdarg {
38    header "stdarg.h"
39    export *
40  }
41
42  module stdatomic {
43    header "stdatomic.h"
44    export *
45  }
46
47  module stdbool {
48    header "stdbool.h"
49    export *
50  }
51
52  module stddef {
53    header "stddef.h"
54    export *
55  }
56
57  module stdint {
58    header "stdint.h"
59    export *
60  }
61
62  module tgmath {
63    header "tgmath.h"
64    export *
65  }
66
67  module unwind {
68    header "unwind.h"
69    export *
70  }
71}
72