<b><u>main.c</u></b>
#include shared.c // Creates a *local* function

void main( void )
{
   // your main code here

   shared_fn(); // Calls *local* function

   // more main code here
}