• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 
3 #ifdef _WIN32
4 __declspec(dllexport)
5 #endif
moveable_function(void)6 void moveable_function(void)
7 {
8   fprintf(stdout, "Hello from lib2_moveable.c\n");
9   fflush(stdout);
10 }
11