Code cleanup

This commit is contained in:
Pierre Pronchery 2008-02-26 12:40:25 +00:00
parent 967b3a4fc2
commit b3f4a2d4c3

View File

@ -142,7 +142,8 @@ static int _c99_error(char const * message, int ret)
/* usage */ /* usage */
static int _usage(void) static int _usage(void)
{ {
fprintf(stderr, "%s", "Usage: c99 [-c][-D name[=value]]...[-E][-g][-I directory][-L directory][-o outfile][-Ooptlevel][-s][-U name]... operand ...\n"); fputs("Usage: c99 [-c][-D name[=value]]...[-E][-g][-I directory]"
"[-L directory][-o outfile][-Ooptlevel][-s][-U name]... operand ...\n", stderr);
return 1; return 1;
} }