Unify usage strings/functions across programs.

The funny spacing is to make it easier to keep to 80 characters/line.
This commit is contained in:
Anthony J. Bentley
2015-01-07 23:13:18 -07:00
parent bdc6401eba
commit 8534f3a148
3 changed files with 15 additions and 14 deletions

View File

@@ -32,9 +32,9 @@ char smartlinkstartsymbol[256];
static void
usage(void)
{
printf("usage: rgblink [-t] [-m mapfile] [-n symfile] [-o outfile]\n");
printf("\t [-s symbol] [-z pad_value] objectfile [...]\n");
printf(
"usage: rgblink [-t] [-m mapfile] [-n symfile] [-o outfile] [-s symbol]\n"
" [-z pad_value] file [...]\n");
exit(1);
}