Build fixes when building with GCC v4.3.2 and -W -Wall -Werror

This commit is contained in:
Joachim Nilsson
2008-12-02 19:09:17 +01:00
parent 62e900a061
commit 77d483da02
6 changed files with 46 additions and 32 deletions

View File

@@ -62,7 +62,7 @@ int my_rl_list_possib(char *token, char ***av)
return total;
}
int main(int ac, char *av[])
int main(int ac __attribute__ ((unused)), char *av[] __attribute__ ((unused)))
{
char *line;
char *prompt = "cli> ";