blob: 62c65253dd4c0c9e537d5c7ed88db268b5c2207d [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001From bba7a647b636618d5fd083e904f995f7736b9168 Mon Sep 17 00:00:00 2001
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 18 Mar 2015 00:28:41 +0000
Brad Bishop316dfdd2018-06-25 12:45:53 -04004Subject: [PATCH 13/27] Add unused attribute
Brad Bishopd7bf8c12018-02-25 22:55:05 -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
Brad Bishop316dfdd2018-06-25 12:45:53 -040020index 123e2a62ce..63cc83ec84 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050021--- 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--
Brad Bishop316dfdd2018-06-25 12:45:53 -0400332.16.1
Brad Bishopd7bf8c12018-02-25 22:55:05 -050034