summaryrefslogtreecommitdiff
path: root/deps/gyp/test/library/src/lib1.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/library/src/lib1.c')
-rw-r--r--deps/gyp/test/library/src/lib1.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/deps/gyp/test/library/src/lib1.c b/deps/gyp/test/library/src/lib1.c
deleted file mode 100644
index 3866b1b845..0000000000
--- a/deps/gyp/test/library/src/lib1.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdio.h>
-
-#ifdef _WIN32
-__declspec(dllexport)
-#endif
-void lib1_function(void)
-{
- fprintf(stdout, "Hello from lib1.c\n");
- fflush(stdout);
-}