The modifier extern used to indicate a top level variable is defined elsewhere in program. E.g:
/* a.c */ extern int count;
/* b.c */ extern int count;
/* c.c */ int count;
Index