diff options
Diffstat (limited to 'test cases/common/13 pch/linkwhole/lib2.c')
-rw-r--r-- | test cases/common/13 pch/linkwhole/lib2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test cases/common/13 pch/linkwhole/lib2.c b/test cases/common/13 pch/linkwhole/lib2.c new file mode 100644 index 0000000..0a13f60 --- /dev/null +++ b/test cases/common/13 pch/linkwhole/lib2.c @@ -0,0 +1,6 @@ +#include<stdio.h> + +void func2() { + const char *cl = GetCommandLineA(); + printf("Command line was: %s\n", cl); +} |