#include "../include/typedefs.h" // Example code from MISRA C:2012 begin /* 1234567890123456789012345678901********* Characters */ extern int32_t engine_exhaust_gas_temperature_raw; static int32_t engine_exhaust_gas_temperature_scaled; /* Non-compliant */ void f ( void ) { /* 1234567890123456789012345678901********* Characters */ int32_t engine_exhaust_gas_temperature_local; /* Compliant */ } /* 1234567890123456789012345678901********* Characters */ static int32_t engine_exhaust_gas_temp_raw; static int32_t engine_exhaust_gas_temp_scaled; /* Compliant */ // Example code from MISRA C:2012 end