/* >>>------------------------------------------------------------ * * File: rule_19.17.h, Module: M2CM-3.2-QAC-8.1.2 * * RULE 19.17 (Required): * All #else, #elif and #endif preprocessor directives shall * reside in the same file as the #if or #ifdef directive to which * they are related. * * Implemented by messages: * 3317 '#if...' not matched by '#endif' in included file. This * is probably an error. * * 3318 '#else'/'#elif'/'#endif' in included file matched * '#if...' in parent file. This is probably an error. * * <<<------------------------------------------------------------ */ /* Following #endif matches #if in parent file */ #endif /* MISRA Violation */ /* Following #if is not matched in this file */ #if 1 /* MISRA Violation */