Skip to content

Commit 29dc89b

Browse files
committed
stdlib: broaden ucrt module
Add `process` to the ucrt module as this is used in the Foundation port for Windows.
1 parent a820992 commit 29dc89b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

stdlib/public/Platform/ucrt.modulemap

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,11 @@ module ucrt [system] {
104104
}
105105
}
106106

107+
module process {
108+
header "process.h"
109+
export *
110+
}
111+
107112
module corecrt {
108113
header "corecrt.h"
109114
export *
@@ -112,6 +117,11 @@ module ucrt [system] {
112117
header "corecrt_io.h"
113118
export *
114119
}
120+
121+
module math {
122+
header "corecrt_math.h"
123+
export *
124+
}
115125
}
116126
}
117127

0 commit comments

Comments
 (0)