/* >>>------------------------------------------------------------ * * File: rule_16.10.c, Module: M2CM-3.2-QAC-8.1.2 * * RULE 16.10 (Required): * If a function returns error information, then that error * information shall be tested. * * Implemented by message: * 3200 '%s' returns a value which is not being used. * * <<<------------------------------------------------------------ */ #include "misra.h" #include "m2cmex.h" static S16 test_1610a( void ); extern S16 test_1610( void ) { S16 r; test_1610a(); /* MISRA Violation */ r = test_1610a(); return r; } static S16 test_1610a( void ) { return 1; }