#include "../include/typedefs.h" // Example code from MISRA C:2012 begin int32_t count; /* “count” has external linkage */ void foo ( void ) /* “foo” has external linkage */ { int16_t index; /* “index” has no linkage */ } // Example code from MISRA C:2012 end