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