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