/* >>>------------------------------------------------------------ * * File: rule_20.9.c, Module: M2CM-3.2-QAC-8.1.2 * * RULE 20.9 (Required): * The input/output library shall not be used in * production code. * * Implemented by message: * 5124 The input/output library shall not be used in * production code. * * <<<------------------------------------------------------------ */ /* PRQA S 2983,3203 ++ */ #include /* MISRA Violation */ #include "misra.h" #include "m2cmex.h" extern S16 test_2009( void ) { FILE *fp; fp = fopen( "test", "r" ); return 0; }