We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c4e848 commit 27c7914Copy full SHA for 27c7914
runtime/druntime/src/rt/dso.d
@@ -78,7 +78,7 @@ version (Posix)
78
version (Darwin)
79
{
80
align(16) byte tlsAnchor = 1;
81
- extern(C) void* getTLSAnchor() nothrow @nogc
+ void* getTLSAnchor() nothrow @nogc
82
83
return &tlsAnchor;
84
}
runtime/druntime/src/rt/sections_elf_shared.d
@@ -486,7 +486,7 @@ else
486
487
488
489
- extern(C) alias GetTLSAnchor = void* function() nothrow @nogc;
+ alias GetTLSAnchor = void* function() nothrow @nogc;
490
491
else version (Windows)
492
0 commit comments