Closed
Description
Native functions may specify an optional 'link name', which is intended to be the actual native name of the function:
fn close(fd: int) -> int = "_close";
The compiler doesn't appear to actually do anything with this information, just generating a call to close
as if the link name wasn't there.