diff options
Diffstat (limited to 'Tests/CustomCommand/wrapper.c')
-rw-r--r-- | Tests/CustomCommand/wrapper.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/CustomCommand/wrapper.c b/Tests/CustomCommand/wrapper.c new file mode 100644 index 0000000..0ed4b76 --- /dev/null +++ b/Tests/CustomCommand/wrapper.c @@ -0,0 +1,9 @@ +#include <stdio.h> + +main(int argc, char *argv[]) +{ + FILE *fp = fopen(argv[1],"w"); + + fprintf(fp,"int wrapped() { return 5; }\n"); + fclose(fp); +} |