#include "../include/typedefs.h" // Example code from MISRA C:2012 begin int16_t unusedtype ( void ) { typedef int16_t local_Type; /* Non-compliant */ return 67; } // Example code from MISRA C:2012 end