06-04-2017, 01:03 PM
On a slightly related topic, the following 'contrived' example was highlighted to me:
It's not clear to me that such declarations/definitions are non-compliant, maybe 4.5 or maybe 4.7?
Does the group have any suggestions?
Code:
/* t.c */
extern int i1;
int i1 = 0;
extern int i2;
int i2 = 0;
extern int i3;
int i3 = 0;
/*...*/
It's not clear to me that such declarations/definitions are non-compliant, maybe 4.5 or maybe 4.7?
Does the group have any suggestions?
<t></t>