Home | History | Annotate | Download | only in src
      1 #include <stdio.h>
      2 
      3 #ifdef _WIN32
      4 __declspec(dllexport)
      5 #endif
      6 void lib2_function(void)
      7 {
      8   fprintf(stdout, "Hello from lib2.c\n");
      9   fflush(stdout);
     10 }
     11