#include "../include/typedefs.h" // Example code from MISRA C:2012 begin /* Non-compliant */ #define Sum1( x, y ) ( ( x ) + ( y ) ) int16_t Sum1; /* Compliant */ #define Sum2( x, y ) ( ( x ) + ( y ) ) int16_t x = Sum2 ( 1, 2 ); /* Non-compliant */ /* 1234567890123456789012345678901********* Characters */ #define low_pressure_turbine_temperature_1 lp_tb_temp_1 static int32_t low_pressure_turbine_temperature_2; // Example code from MISRA C:2012 begin