"Jonathan M Davis" <[email protected]> wrote in message 
news:[email protected]...
> As http://d.puremagic.com/issues/show_bug.cgi?id=4788 points out,
> extern(System) isn't properly documented, so I have no idea what it 
> translates
> to. Does anyone know what exactly it translates to on Linux/Posix and 
> Windows?

It should be on http://www.d-programming-language.org/attribute.html in the 
'Linkage Attribute' section, but naturally it's only mentioned.

But at least I can tell you in the compiler, the definition is simple:

        else if (id == Id::System)
        {
#if _WIN32
            link = LINKwindows;
#else
            link = LINKc;
#endif
        }


Reply via email to