summaryrefslogtreecommitdiffstats
path: root/Tests/CustomCommand
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CustomCommand')
-rw-r--r--Tests/CustomCommand/wrapper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/CustomCommand/wrapper.cxx b/Tests/CustomCommand/wrapper.cxx
index f65eb9b..3ad0794 100644
--- a/Tests/CustomCommand/wrapper.cxx
+++ b/Tests/CustomCommand/wrapper.cxx
@@ -8,11 +8,11 @@ int main(int argc, char *argv[])
return 1;
}
FILE *fp = fopen(argv[1],"w");
- fprintf(fp,"extern int wrapped_help(void);\n");
- fprintf(fp,"int wrapped(void) { return wrapped_help(); }\n");
+ fprintf(fp,"extern int wrapped_help();\n");
+ fprintf(fp,"int wrapped() { return wrapped_help(); }\n");
fclose(fp);
fp = fopen(argv[2],"w");
- fprintf(fp,"int wrapped_help(void) { return 5; }\n");
+ fprintf(fp,"int wrapped_help() { return 5; }\n");
fclose(fp);
return 0;
}