Skip to content

Commit fbf4b6b

Browse files
committed
Drop [extern_c] annotation
The headers already add `extern "C"` blocks.
1 parent 30eede6 commit fbf4b6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stdlib/public/Platform/ucrt.modulemap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@
1212

1313
// The following modules have to be standalone top-level modules to deal with
1414
// version 10.0.26100 of the Windows SDK.
15-
module _malloc [system] [extern_c] [no_undeclared_includes] {
15+
module _malloc [system] [no_undeclared_includes] {
1616
use corecrt
1717
header "malloc.h"
1818
export *
1919
}
2020

21-
module _complex [system] [extern_c] [no_undeclared_includes] {
21+
module _complex [system] [no_undeclared_includes] {
2222
use corecrt
2323
header "complex.h"
2424
export *
2525
}
2626

27-
module _stddef [system] [extern_c] [no_undeclared_includes] {
27+
module _stddef [system] [no_undeclared_includes] {
2828
header "stddef.h"
2929
export *
3030
}
3131

32-
module _stdlib [system] [extern_c] [no_undeclared_includes] {
32+
module _stdlib [system] [no_undeclared_includes] {
3333
use corecrt
3434
header "stdlib.h"
3535
export *

0 commit comments

Comments
 (0)