summaryrefslogtreecommitdiff
path: root/deps/gyp/test/standalone-static-library/prog.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/standalone-static-library/prog.c')
-rw-r--r--deps/gyp/test/standalone-static-library/prog.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/deps/gyp/test/standalone-static-library/prog.c b/deps/gyp/test/standalone-static-library/prog.c
new file mode 100644
index 0000000000..8af5c90844
--- /dev/null
+++ b/deps/gyp/test/standalone-static-library/prog.c
@@ -0,0 +1,7 @@
+extern void print(void);
+
+int main(void)
+{
+ print();
+ return 0;
+}