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