From 3339f0daab3223fe58c00a26ba461ef00edf3f42 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20Bie=C3=9Fmann?= Date: Mon, 4 Jun 2012 13:01:09 +0200 Subject: [PATCH] text-utils/hexsyntax.c: fix for missing program_invocation_short_name MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Some libc do not expose program_invocation_short_name. Therefore util-linux comes with helpers in 'c.h'. Use the 'c.h' in hexsyntax.c where it was missed. This patch fixes following error for me: ---8<--- hexsyntax.c: In function 'newsyntax': hexsyntax.c:115: error: 'program_invocation_short_name' undeclared (first use in this function) hexsyntax.c:115: error: (Each undeclared identifier is reported only once hexsyntax.c:115: error: for each function it appears in.) --->8--- Signed-off-by: Andreas Bießmann --- text-utils/hexsyntax.c | 1 + 1 file changed, 1 insertion(+) diff --git a/text-utils/hexsyntax.c b/text-utils/hexsyntax.c index 5f3b7338c3..21cc55ef07 100644 --- a/text-utils/hexsyntax.c +++ b/text-utils/hexsyntax.c @@ -45,6 +45,7 @@ #include "hexdump.h" #include "nls.h" #include "strutils.h" +#include "c.h" off_t skip; /* bytes to skip */ -- 2.47.3