/* >>>------------------------------------------------------------ * * File: rule_16.5.c, Module: M2CM-3.2-QAC-8.1.2 * * RULE 16.5 (Required): * Functions with no parameters shall be declared and defined with * the parameter list void. * * Implemented by messages: * 3001 Function has been declared with an empty parameter list. * * 3007 "void" has been omitted when defining a function with no * parameters. * * <<<------------------------------------------------------------ */ #include "misra.h" #include "m2cmex.h" static void test_1605a(); /* MISRA Violation */ static void test_1605a() /* MISRA Violation */ { } extern S16 test_1605( void ) { test_1605a(); return 0; }