diff options
author | Karel Zak | 2011-04-12 12:58:17 +0200 |
---|---|---|
committer | Karel Zak | 2011-04-12 12:58:17 +0200 |
commit | 0a0803460c238b96e240de2158043505d914251f (patch) | |
tree | b00b866999d4bfbdf847a2b03afd413455626daf /text-utils | |
parent | script: don't include err.h directly (diff) | |
download | kernel-qcow2-util-linux-0a0803460c238b96e240de2158043505d914251f.tar.gz kernel-qcow2-util-linux-0a0803460c238b96e240de2158043505d914251f.tar.xz kernel-qcow2-util-linux-0a0803460c238b96e240de2158043505d914251f.zip |
hexdump: don't include err.h directly
Diffstat (limited to 'text-utils')
-rw-r--r-- | text-utils/hexdump.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/text-utils/hexdump.c b/text-utils/hexdump.c index fd4b37d47..553220d89 100644 --- a/text-utils/hexdump.c +++ b/text-utils/hexdump.c @@ -38,10 +38,11 @@ #include <sys/types.h> #include <stdio.h> #include <string.h> -#include <err.h> #include <stdlib.h> #include "hexdump.h" + #include "nls.h" +#include "c.h" FS *fshead; /* head of format strings */ int blocksize; /* data block size */ |