diff options
Diffstat (limited to 'third_party/python/gyp/test/same-source-file-name/src/func.c')
-rw-r--r-- | third_party/python/gyp/test/same-source-file-name/src/func.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/python/gyp/test/same-source-file-name/src/func.c b/third_party/python/gyp/test/same-source-file-name/src/func.c new file mode 100644 index 0000000000..e069c692a6 --- /dev/null +++ b/third_party/python/gyp/test/same-source-file-name/src/func.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +void func(void) +{ + printf("Hello %s from func.c\n", PROG); +} |