Tentative definitions in C99 and linking - Stack Overflow most recent 30 from stackoverflow.com2010-03-16T06:41:59Zhttp://stackoverflow.com/feeds/question/1490693http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1490693/tentative-definitions-in-c99-and-linking2Tentative definitions in C99 and linkingPascal Cuoqhttp://stackoverflow.com/users/1397462009-09-29T05:25:17Z2009-10-11T15:19:27Z
<p>Consider the C program composed of two files,</p>
<p>f1.c:</p>
<pre><code>int x;
</code></pre>
<p>f2.c:</p>
<pre><code>int x=2;
</code></pre>
<p>My reading of paragraph 6.9.2 of <a href="http://www.open-std.org/JTC1/SC22/wg14/www/docs/n1124.pdf" rel="nofollow">the C99 standard</a> is that this program should be rejected. In my interpretation of 6.9.2, variable <code>x</code> is tentatively defined in <code>f1.c</code>, but this tentative definition becomes an actual definition at the end of the translation unit, and (in my opinion), should therefore behave as if <code>f1.c</code> contained the definition <code>int x=0;</code>.</p>
<p>With all compilers (and, importantly, linkers) I was able to try, this is not what happens. All compilation platforms I tried do link the above two files, and the value of <code>x</code> is 2 in both files.</p>
<p>I doubt this happens by accident, or just as an "easy" feature to provide in addition to what the standard requires. If you think about it, it means there is special support in the linker for those global variables that do not have an initializer, as opposed to those explicitly initialized to zero. Someone told me that the linker feature may be necessary to compile Fortran anyway. That would be a reasonable explanation.</p>
<p>Any thoughts about this? Other interpretations of the standard? Names of platforms on which files <code>f1.c</code> and <code>f2.c</code> refuse to be linked together?</p>
<p>Note: this is important because the question occurs in the context of static analysis. If the two files may refuse to be linked on some platform, the analyzer should complain, but if every compilation platform accepts it then there is no reason to warn about it.</p>
http://stackoverflow.com/questions/1490693/tentative-definitions-in-c99-and-linking/1490724#14907242Answer by olovb for Tentative definitions in C99 and linkingolovbhttp://stackoverflow.com/users/1478082009-09-29T05:36:11Z2009-09-29T05:42:55Z<p>There is something called a "common extension" to the standard, where defining variables multiple times is allowed as long as the variable is initialized only once. See <a href="http://c-faq.com/decl/decldef.html" rel="nofollow">http://c-faq.com/decl/decldef.html</a> </p>
<p>The linked page says this is pertinent to Unix platforms--I guess it's the same for c99 as c89--though maybe it has been adopted by more compilers to form some sort of a defacto standard. Interesting.</p>
http://stackoverflow.com/questions/1490693/tentative-definitions-in-c99-and-linking/1490777#14907776Answer by Jonathan Leffler for Tentative definitions in C99 and linkingJonathan Lefflerhttp://stackoverflow.com/users/151682009-09-29T05:54:55Z2009-09-29T13:46:43Z<p>See also <a href="http://stackoverflow.com/questions/1433204">What are extern variables in C</a>. This is mentioned in the C standard in informative Annex J as a common extension:</p>
<blockquote>
<p>J.5.11 Multiple external definitions</p>
<p>There may be more than one external definition for the identifier of an object, with or without the explicit use of the keyword extern; if the definitions disagree, or more than one is initialized, the behavior is undefined (6.9.2).</p>
</blockquote>
<h3>Warning</h3>
<p>As @litb points out here, and as stated in my answer to the cross-referenced question, using multiple definitions for a global variable leads to undefined behaviour, which is the standard's way of saying "anything could happen". One of the things that can happen is that the program behaves as you expect; and J.5.11 says, approximately, "you might be lucky more often than you deserve". But a program that relies on multiple definitions of an extern variable - with or without the explicit 'extern' keyword - is not a strictly conforming program and not guaranteed to work everywhere. Equivalently: it contains a <strong>bug</strong> which may or may not show itself.</p>
http://stackoverflow.com/questions/1490693/tentative-definitions-in-c99-and-linking/1491056#14910561Answer by Pascal Cuoq for Tentative definitions in C99 and linkingPascal Cuoqhttp://stackoverflow.com/users/1397462009-09-29T07:25:19Z2009-09-29T07:31:52Z<p>This is to clarify my answer to a comment by olovb:</p>
<p>output of nm for an object file compiled from "int x;". On this platform, symbols are prepended with a '_', that is, the variable x appears as _x.</p>
<pre><code>00000000 T _main
U _unknown
00000004 C _x
U dyld_stub_binding_helper
</code></pre>
<p>output of nm for an object file compiled from "int x=1;"</p>
<pre><code>00000000 T _main
U _unknown
000000a0 D _x
U dyld_stub_binding_helper
</code></pre>
<p>output of nm for an object file compiled from "int x=0;"</p>
<pre><code>00000000 T _main
U _unknown
000000a0 D _x
U dyld_stub_binding_helper
</code></pre>
<p>output of nm for an object file compiled from "extern int x;"</p>
<pre><code>00000000 T _main
U _unknown
U dyld_stub_binding_helper
</code></pre>
<p>EDIT: output of nm for an object file compiled from "extern int x;" where x is actually used in one of the functions</p>
<pre><code>00000000 T _main
U _unknown
U _x
U dyld_stub_binding_helper
</code></pre>