/* >>>------------------------------------------------------------ * * File: rule_8.5.h, Module: M2CM-3.2-QAC-8.1.2 * * RULE 8.5 (Required): * There shall be no definitions of objects or functions in a * header file. * * Implemented by message: * 3406 Object '%s' defined in a header file. * * <<<------------------------------------------------------------ */ #ifndef RULE_8_5_H #define RULE_8_5_H #include "misra.h" static S16 test_0805c( void ); S16 test_0805a; /* tentative definition */ S16 test_0805b = 1; /* definition */ static S16 test_0805c( void ) /* definition */ { return 0; } #endif