diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-20 13:54:30 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-20 13:54:30 +0000 |
commit | 6f6680e2fd5af72e28889e078706f36870b2c07a (patch) | |
tree | 779b713fca735726a1b2e367e664e69622d68ed1 /package/libs | |
parent | 3dcca52dd6167941dff0679f84177cc6704cf45d (diff) | |
download | master-187ad058-6f6680e2fd5af72e28889e078706f36870b2c07a.tar.gz master-187ad058-6f6680e2fd5af72e28889e078706f36870b2c07a.tar.bz2 master-187ad058-6f6680e2fd5af72e28889e078706f36870b2c07a.zip |
libiconv: change include guard to make glib2 consider it compatible
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48396 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libs')
-rw-r--r-- | package/libs/libiconv/src/include/iconv.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/libs/libiconv/src/include/iconv.h b/package/libs/libiconv/src/include/iconv.h index 64acb6fd56..8767be42ee 100644 --- a/package/libs/libiconv/src/include/iconv.h +++ b/package/libs/libiconv/src/include/iconv.h @@ -1,5 +1,5 @@ -#ifndef _ICONV_H -#define _ICONV_H 1 +#ifndef _LIBICONV_H +#define _LIBICONV_H 1 #define _LIBICONV_VERSION 0x010B /* version number: (major<<8) + minor */ @@ -33,4 +33,4 @@ iconv_close(iconv_t cd); } #endif -#endif /* _ICONV_H */ +#endif /* _LIBICONV_H */ |