#include static void funcA (); void funcA () { printf ("func A in file 1\n"); } int main () { funcA (); // Accessing a function in this file. }