<b><u>isr.c</u></b>
#define ISR       // enable ISR-specifics
#include shared.c // Creates a *local* function

void isr( void ) interrupt x using y
{
   // your ISR code here

   shared_fn(); // Calls *local* function

   // more ISR code here
}