File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,39 @@ module _complex [system] [no_undeclared_includes] {
19
19
export *
20
20
}
21
21
22
+ module _fenv [system] [no_undeclared_includes] {
23
+ use _float
24
+ use corecrt
25
+ header "fenv.h"
26
+ export *
27
+ }
28
+
29
+ module _float [system] [no_undeclared_includes] {
30
+ use corecrt
31
+ header "float.h"
32
+ export *
33
+ }
34
+
35
+ module _malloc [system] [no_undeclared_includes] {
36
+ use corecrt
37
+ header "malloc.h"
38
+ export *
39
+ }
40
+
41
+ module _stdlib [system] [no_undeclared_includes] {
42
+ use corecrt
43
+ header "stdlib.h"
44
+ export *
45
+ }
46
+
22
47
module ucrt [system] {
23
48
24
49
module C {
25
50
export _complex
51
+ export _fenv
52
+ export _float
53
+ export _malloc
54
+ export _stdlib
26
55
27
56
module ctype {
28
57
header "ctype.h"
You can’t perform that action at this time.
0 commit comments