summaryrefslogtreecommitdiff
path: root/deps/gyp/test/module/src/lib1.c
blob: 8de0e94bee70508485202df3f628c00b670df808 (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 lib1.c\n");
  fflush(stdout);
}