dd: code-style, linewrap

This commit is contained in:
Hiltjo Posthuma 2015-02-02 19:56:59 +01:00 committed by sin
parent f0cfd58e93
commit c7f472f468
1 changed files with 7 additions and 6 deletions

13
dd.c
View File

@ -212,12 +212,6 @@ copy(struct dd_config *ddc)
return r;
}
static void
usage(void)
{
eprintf("usage: %s [-h] [if=infile] [of=outfile] [bs[=N]] [seek=N] [skip=N] [count=N] [direct] [quiet] [nosync]\n", argv0);
}
static void
print_stat(const struct dd_config *ddc)
{
@ -241,6 +235,13 @@ sig_int(int unused)
sigint = 1;
}
static void
usage(void)
{
eprintf("usage: %s [-h] [if=infile] [of=outfile] [bs[=N]] [seek=N] "
"[skip=N] [count=N] [direct] [quiet] [nosync]\n", argv0);
}
int
main(int argc, char *argv[])
{