C the same global variable defined in different files

You are violating C’s “one definition rule”, and the result is undefined behavior. The “one definition rule” is not formally stated in the standard as such. We are looking at objects in different source files (aka, translation units), so we concerned with “external definitions”. The “one external definition” semantic is spelled out (C11 6.9 p5):

An external definition is an external declaration that is also a definition of a function (other than an inline definition) or an object. If an identifier declared with external linkage is used in an expression (other than as part of the operand of a sizeof or _Alignof operator whose result is an integer constant), somewhere in the entire program there shall be exactly one external definition for the identifier; otherwise, there shall be no more than one.

Which basically means you are only allowed to define an object at most once. (The otherwise clause allows you to not define an external object at all if it is never used anywhere in the program.)

Note that you have two external definitions for b. One is the structure that you initialize in foo.c, and the other is the tentative definition in main.c, (C11 6.9.2 p1-2):

If the declaration of an identifier for an object has file scope and an initializer, the
declaration is an external definition for the identifier.

A declaration of an identifier for an object that has file scope without an initializer, and without a storage-class specifier or with the storage-class specifier static, constitutes a tentative definition. If a translation unit contains one or more tentative definitions for an identifier, and the translation unit contains no external definition for that identifier, then the behavior is exactly as if the translation unit contains a file scope declaration of that identifier, with the composite type as of the end of the translation unit, with an initializer equal to 0.

So you have multiple definitions of b. However, there is another error, in that you have defined b with different types. First note that multiple declarations to the same object with external linkage is allowed. However, when the same name is used in two different source files, that name refers to the same object (C11 6.2.2 p2):

In the set of translation units and libraries that constitutes an entire program, each
declaration of a particular identifier with external linkage denotes the same object or
function.

C puts a strict limitation on declarations to the same object (C11 6.2.7 p2):

All declarations that refer to the same object or function shall have compatible type;
otherwise, the behavior is undefined.

Since the types for b in each of your source files do not actually match, the behavior is undefined. (What constitutes a compatible type is described in detail in all of C11 6.2.7, but it basically boils down to being that the types have to match.)

So you have two failings for b:

  • Multiple definitions.
  • Multiple declarations with incompatible types.

Technically, your declaration of int a in both of your source files also violates the “one definition rule”. Note that a has external linkage (C11 6.2.2 p5):

If the declaration of an identifier for an object has file scope and no storage-class specifier, its linkage is external.

But, from the quote from C11 6.9.2 earlier, those int a tentative definitions are external definitions, and you are only allowed one of those from the quote from C11 6.9 at the top.

The usual disclaimers apply for undefined behavior. Anything can happen, and that would include the behavior you observed.


A common extension to C is to allow multiple external definitions, and is described in the C standard in the informative Annex J.5 (C11 J.5.11):

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).

(Emphasis is mine.) Since the definitions for a agree, there is no harm there, but the definitions for b do not agree. This extension explains why your compiler does not complain about the presence of multiple definitions. From the quote of C11 6.2.2, the linker will attempt to reconcile the multiple references to the same object.

Linkers typically use one of two models for reconciling multiple definitions of the same symbol in multiple translation units. These are the “Common Model” and the “Ref/Def Model”. In the “Common Model”, multiple objects with the same name are folded into a single object in a union style manner so that the object takes on the size of the largest definition. In the “Ref/Def Model”, each external name must have exactly one definition.

The GNU toolchain uses the “Common Model” by default, and a “Relaxed Ref/Def Model”, where it enforces a strictly one definition rule for a single translation unit, but does not complain about violations across multiple translation units.

The “Common Model” can be suppressed in the GNU compiler by using the -fno-common option. When I tested this on my system, it caused “Strict Ref/Def Model” behavior for code similar to yours:

$ cat a.c
#include <stdio.h>
int a;
struct { char a; int b; } b = { 2, 4 };
void foo () { printf("%zu\n", sizeof(b)); }
$ cat b.c
#include <stdio.h>
extern void foo();
int a, b;
int main () { printf("%zu\n", sizeof(b)); foo(); }
$ gcc -fno-common a.c b.c
/tmp/ccd4fSOL.o:(.bss+0x0): multiple definition of `a'
/tmp/ccMoQ72v.o:(.bss+0x0): first defined here
/tmp/ccd4fSOL.o:(.bss+0x4): multiple definition of `b'
/tmp/ccMoQ72v.o:(.data+0x0): first defined here
/usr/bin/ld: Warning: size of symbol `b' changed from 8 in /tmp/ccMoQ72v.o to 4 in /tmp/ccd4fSOL.o
collect2: ld returned 1 exit status
$

I personally feel the last warning issued by the linker should always be provided regardless of the resolution model for multiple object definitions, but that is neither here nor there.


References:
Unfortunately, I can’t give you the link to my copy of the C11 Standard
What are extern variables in C?
The “Beginner’s Guide to Linkers”
SAS Documentation on External Variable Models

Leave a Comment