X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=util-linux%2Fhexdump.c;h=136243122a9ec024cb07e29590e470fcd480f8c6;hb=6ced427a6debb71967a8b9cebc12e31c08de0f6a;hp=2181b846d9c22df26f5e3e19ca31fb8ed6010134;hpb=68229837ff1e690190d51b74b281cfe999220e6d;p=oweals%2Fbusybox.git diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c index 2181b846d..136243122 100644 --- a/util-linux/hexdump.c +++ b/util-linux/hexdump.c @@ -1,3 +1,4 @@ +/* vi: set sw=4 ts=4: */ /* * hexdump implementation for busybox * Based on code from util-linux v 2.11l @@ -10,7 +11,6 @@ #include "busybox.h" #include -#include #include "dump.h" static void bb_dump_addfile(char *name) @@ -19,7 +19,7 @@ static void bb_dump_addfile(char *name) FILE *fp; char *buf; - fp = bb_xfopen(name, "r"); + fp = xfopen(name, "r"); while ((buf = bb_get_chomped_line_from_file(fp)) != NULL) { p = skip_whitespace(buf);