Skip to content

Commit 68524a8

Browse files
authored
Merge pull request #81951 from Steelskin/fabrice/ucrt-modulemap-26100-3916
Platform: Windows SDK 26100.3916 module map update
2 parents 67b5556 + e94cc86 commit 68524a8

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

stdlib/public/Platform/ucrt.modulemap

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
2247
module 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"

0 commit comments

Comments
 (0)