blob: ea3e1670f85109efa8bbffe11c6308bdf6ff73b9 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From cafa8a7ef830e02cdbf928471e06d11054946940 Mon Sep 17 00:00:00 2001
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 18 Mar 2015 00:28:41 +0000
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05004Subject: [PATCH 14/24] Add unused attribute
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005
6Helps in avoiding gcc warning when header is is included in
7a source file which does not use both functions
8
9 * iconv/gconv_charset.h (strip):
10 Add unused attribute.
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13
14Upstream-Status: Pending
15---
16 iconv/gconv_charset.h | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/iconv/gconv_charset.h b/iconv/gconv_charset.h
20index 80290bc..7890a8e 100644
21--- a/iconv/gconv_charset.h
22+++ b/iconv/gconv_charset.h
23@@ -21,7 +21,7 @@
24 #include <locale.h>
25
26
27-static void
28+static void __attribute__ ((unused))
29 strip (char *wp, const char *s)
30 {
31 int slash_count = 0;
32--
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500332.6.4
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034