Abraxas/Misra Home Table of Contents
#include "misra.h"
SI_32
rule45 ( void )
Function Name: rule45()
{SI_32 c = 3;SI_32 *pc = &c;SI_16 *pj;pj = ( SI_16 * ) c; /* RULE 45 */pc = ( SI_32 * ) pj; /* RULE 45 */c = ( SI_32 ) pc; /* RULE 45 */return c;
}
Abraxas/Misra Home Table of Contents