From bff59d13a82cd4c02792fd73da0e7c79bda022ff Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 10 Nov 2017 00:27:34 -0500 Subject: move iconv_close to its own translation unit this is in preparation to support stateful conversion descriptors, which are necessarily allocated and thus must be freed in iconv_close. putting it in a separate TU will avoid pulling in free if iconv_close is not referenced. --- src/locale/iconv.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/locale/iconv.c') diff --git a/src/locale/iconv.c b/src/locale/iconv.c index 5f1b0a3e..c64bcf35 100644 --- a/src/locale/iconv.c +++ b/src/locale/iconv.c @@ -129,11 +129,6 @@ iconv_t iconv_open(const char *to, const char *from) return combine_to_from(t, f); } -int iconv_close(iconv_t cd) -{ - return 0; -} - static unsigned get_16(const unsigned char *s, int e) { e &= 1; -- cgit v1.2.1