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