commit c7f472f468135f5294b3a51ccf1fdd162aa3653b
Author: Hiltjo Posthuma <[email protected]>
Date: Mon Feb 2 19:56:59 2015 +0100
dd: code-style, linewrap
diff --git a/dd.c b/dd.c
index a82a7ad..8f802ac 100644
--- a/dd.c
+++ b/dd.c
@@ -213,12 +213,6 @@ copy(struct dd_config *ddc)
}
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)
{
if (ddc->quiet)
@@ -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[])
{