25-02-2014, 05:50 AM
I have a question for the Rule8.6 exmaple.
Your guideline has a following example.
/* file3.c */
int16_t j; /* Tentative definition */
int16_t j=1; /* Compliant - external definition */
I make the next exapmle.
Is it correct?
/* file3_2.c */
int16_t m=1; /* Compliant - external definition */ â†is it correct?
int16_t m; /* declaration */ â†is it correct?
Best Regards,
Kumiko Itoh
Your guideline has a following example.
/* file3.c */
int16_t j; /* Tentative definition */
int16_t j=1; /* Compliant - external definition */
I make the next exapmle.
Is it correct?
/* file3_2.c */
int16_t m=1; /* Compliant - external definition */ â†is it correct?
int16_t m; /* declaration */ â†is it correct?
Best Regards,
Kumiko Itoh
<t></t>