/* >>>------------------------------------------------------------ * * File: rule_20.12.c, Module: M2CM-3.2-QAC-8.1.2 * * RULE 20.12 (Required): * The time handling functions of library shall not be * used. * * Implemented by message: * 5127 The time handling functions of library shall * not be used. * * <<<------------------------------------------------------------ */ #include /* MISRA Violation */ #include "misra.h" #include "m2cmex.h" extern S16 test_2012( void ) { S16 r = 0; time_t xtime; if ( time( &xtime ) == ( time_t )-1 ) /* MISRA Violation */ { r = -1; } return r; }