summaryrefslogtreecommitdiff
path: root/deps/gyp/test/library/src/lib1_moveable.c
blob: 5d3cc1d9aab267e71b49118055b0b350a11b06de (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

#ifdef _WIN32
__declspec(dllexport)
#endif
void moveable_function(void)
{
  fprintf(stdout, "Hello from lib1_moveable.c\n");
  fflush(stdout);
}