www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - What is "extern(System)"?

reply CRy386i <tetris123480 gmail.com> writes:
I have confusion what's this mean? Is it use specific linking 
thing for specific system or it's just api thing or abi?

What does mean "System"?
Oct 31
next sibling parent Zealot <zealot planet.earth> writes:
On Friday, 31 October 2025 at 21:43:26 UTC, CRy386i wrote:
 I have confusion what's this mean? Is it use specific linking 
 thing for specific system or it's just api thing or abi?

 What does mean "System"?
System is the same as Windows on Windows platforms, and C on other platforms.
Oct 31
prev sibling parent Nicholas Wilson <iamthewilsonator hotmail.com> writes:
On Friday, 31 October 2025 at 21:43:26 UTC, CRy386i wrote:
 I have confusion what's this mean? Is it use specific linking 
 thing for specific system or it's just api thing or abi?

 What does mean "System"?
`extern(System)` is `extern(Windows)` on Windows and `extern(C)` everywhere else. It is an ABI thing, not just a linker thing.
Oct 31