19-12-2013, 08:25 AM
Which of the following are compliant with rule 8.4?
Code:
extern int32_t ext_val0 = 3;
int32_t ext_val1 = 3
extern int32_t extval2;
int32_t extval2 = 3;
int32_t ext_val3;
int32_t ext_val3 = 3;
int32_t ext_val4;
Posted by and on behalf of the MISRA C Working Group