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] {
1919 export *
2020}
2121
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+
2247module ucrt [system] {
2348
2449 module C {
2550 export _complex
51+ export _fenv
52+ export _float
53+ export _malloc
54+ export _stdlib
2655
2756 module ctype {
2857 header "ctype.h"
You can’t perform that action at this time.
0 commit comments