Why do C compilers prepend underscores to external names?
Posted
by Michael Burr
on Stack Overflow
See other posts from Stack Overflow
or by Michael Burr
Published on 2010-04-13T06:45:25Z
Indexed on
2010/04/13
7:33 UTC
Read the original article
Hit count: 326
c
|language-history
I've been working in C for so long that the fact that compilers typically add an underscore to the start of an extern
is just understood... However, another SO question today got me wondering about the real reason why the underscore is added. A wikipedia article claims that a reason is:
It was common practice for C compilers to prepend a leading underscore to all external scope program identifiers to avert clashes with contributions from runtime language support
I think there's at least a kernel of truth to this, but also it seems to no really answer the question, since if the underscore is added to all externs it won't help much with preventing clashes.
Does anyone have good information on the rationale for the leading underscore?
Is the added underscore part of the reason that the Unix creat()
system call doesn't end with an 'e'? I've heard that early linkers on some platforms had a limit of 6 characters for names. If that's the case, then prepending an underscore to external names would seem to be a downright crazy idea (now I only have 5 characters to play with...).
© Stack Overflow or respective owner