diff options
Diffstat (limited to 'third_party/python/gyp/test/standalone-static-library/mylib.c')
-rw-r--r-- | third_party/python/gyp/test/standalone-static-library/mylib.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/python/gyp/test/standalone-static-library/mylib.c b/third_party/python/gyp/test/standalone-static-library/mylib.c new file mode 100644 index 0000000000..108be618c2 --- /dev/null +++ b/third_party/python/gyp/test/standalone-static-library/mylib.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +void print(void) +{ + printf("hello from mylib.c\n"); + return; +} |