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

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