File tree Expand file tree Collapse file tree 1 file changed +28
-11
lines changed Expand file tree Collapse file tree 1 file changed +28
-11
lines changed Original file line number Diff line number Diff line change 10
10
//
11
11
//===----------------------------------------------------------------------===//
12
12
13
- module _complex [system] {
13
+ // The following modules have to be standalone top-level modules to deal with
14
+ // version 10.0.26100 of the Windows SDK.
15
+ module _malloc [system] [no_undeclared_includes] {
16
+ use corecrt
17
+ header "malloc.h"
18
+ export *
19
+ }
20
+
21
+ module _complex [system] [no_undeclared_includes] {
22
+ use corecrt
23
+ use std
14
24
header "complex.h"
15
25
export *
16
26
}
17
27
28
+ module _stddef [system] [no_undeclared_includes] {
29
+ header "stddef.h"
30
+ export *
31
+ }
32
+
33
+ module _stdlib [system] [no_undeclared_includes] {
34
+ use corecrt
35
+ header "stdlib.h"
36
+ export *
37
+ }
38
+
18
39
module ucrt [system] {
40
+ export _malloc
41
+
19
42
module C {
43
+ export _complex
44
+ export _stddef
45
+ export _stdlib
46
+
20
47
module ctype {
21
48
header "ctype.h"
22
49
export *
@@ -57,11 +84,6 @@ module ucrt [system] {
57
84
export *
58
85
}
59
86
60
- module stddef {
61
- header "stddef.h"
62
- export *
63
- }
64
-
65
87
module stdio {
66
88
header "stdio.h"
67
89
export *
@@ -132,11 +154,6 @@ module ucrt [system] {
132
154
export *
133
155
}
134
156
135
- module malloc {
136
- header "malloc.h"
137
- export *
138
- }
139
-
140
157
module minmax {
141
158
header "minmax.h"
142
159
export *
You can’t perform that action at this time.
0 commit comments