From: Joel Rosdahl Date: Sat, 17 Sep 2011 21:55:22 +0000 (+0200) Subject: Remove unused print_executed_command function X-Git-Tag: v3.1.7~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7818f97c1ce23a52a5de4da6bfdea1721bbcbfe3;p=thirdparty%2Fccache.git Remove unused print_executed_command function --- diff --git a/ccache.h b/ccache.h index c2536f5cc..2bc7c8775 100644 --- a/ccache.h +++ b/ccache.h @@ -191,7 +191,6 @@ int execute(char **argv, const char *path_stderr); char *find_executable(const char *name, const char *exclude_name); void print_command(FILE *fp, char **argv); -void print_executed_command(FILE *fp, char **argv); /* ------------------------------------------------------------------------- */ /* lockfile.c */ diff --git a/execute.c b/execute.c index 80e327e5c..f1970d375 100644 --- a/execute.c +++ b/execute.c @@ -301,10 +301,3 @@ print_command(FILE *fp, char **argv) } fprintf(fp, "\n"); } - -void -print_executed_command(FILE *fp, char **argv) -{ - fprintf(fp, "%s: executing ", MYNAME); - print_command(fp, argv); -}