Abraxas/Misra Home Table of Contents
#include "misra.h"
static int func12 ( SI_32 x ) ;
struct x /* RULE 12 */
{
SI_32 x; /* RULE 12 */
} xx;
static int func12 ( SI_32 x )
Function Name: func12()
{struct x /* RULE 12 tag dup */{SI_32 x; /* RULE 12 */} xx; /* RULE 12 hidden *//* x is now used in the remaining name space. */
SI_32 x; /* RULE 12 */
if ( 1 ) goto x; /* RULE 12 */
x: /* RULE 12 */
return 1;
}
Abraxas/Misra Home Table of Contents