/* >>>------------------------------------------------------------ * * File: rule_5.7.c, Module: M2CM-3.2-QAC-8.1.2 * * RULE 5.7 (Advisory): * No identifier name should be reused. * * Not enforced * * <<<------------------------------------------------------------ */ /* PRQA S 2983,3197,3203 ++ */ #include "misra.h" #include "m2cmex.h" static S16 test_0507a( void ); extern S16 test_0507( void ) { S16 i; i = test_0507a(); return i; } static S16 test_0507a( void ) { S16 i = 1; /* MISRA Violation - not enforced */ return i; }