aboutsummaryrefslogtreecommitdiff
path: root/toys/other/xxd.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2018-11-02 20:07:02 -0500
committerRob Landley <rob@landley.net>2018-11-02 20:07:02 -0500
commit6a73e13d75d31da2c3f1145d8487725f0073a4b8 (patch)
tree17b5bb8b6b5e94b1c93818954cf322a39941a4be /toys/other/xxd.c
parent49e1d8733ebcaf130623c68a2393a3c43702a524 (diff)
downloadtoybox-6a73e13d75d31da2c3f1145d8487725f0073a4b8.tar.gz
Convert more option vars to the new (single letter) coding style.
Diffstat (limited to 'toys/other/xxd.c')
-rw-r--r--toys/other/xxd.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/toys/other/xxd.c b/toys/other/xxd.c
index 80892fb5..99321eef 100644
--- a/toys/other/xxd.c
+++ b/toys/other/xxd.c
@@ -35,11 +35,7 @@ config XXD
#include "toys.h"
GLOBALS(
- long s;
- long g;
- long o;
- long l;
- long c;
+ long s, g, o, l, c;
)
static void do_xxd(int fd, char *name)