Home | History | Annotate | Download | only in src
      1 #include <stdio.h>
      2 
      3 extern void lib1_function(void);
      4 extern void lib2_function(void);
      5 extern void moveable_function(void);
      6 
      7 int main(void)
      8 {
      9   fprintf(stdout, "Hello from program.c\n");
     10   fflush(stdout);
     11   lib1_function();
     12   lib2_function();
     13   moveable_function();
     14   return 0;
     15 }
     16