/* >>>------------------------------------------------------------ * * File: rule_19.6.c, Module: M2CM-3.2-QAC-8.1.2 * * RULE 19.6 (Required): * #undef shall not be used. * * Implemented by message: * 841 Using '#undef'. * * <<<------------------------------------------------------------ */ #include "misra.h" #include "m2cmex.h" #define L 0 #undef L /* MISRA Violation */ extern S16 test_1906( void ) { return 1; }