about summary refs log tree commit diff
path: root/iconv
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2021-07-07 18:33:52 +0200
committerFlorian Weimer <fweimer@redhat.com>2021-07-07 18:33:52 +0200
commit7fcdb532534e46f70624fd7e3681eb6831a69303 (patch)
tree60f16913ffc4d1d1464900883d12789e80efedee /iconv
parent771473a8c4f44d11e8e6521a96f4e92c20984eb3 (diff)
downloadglibc-7fcdb532534e46f70624fd7e3681eb6831a69303.tar.gz
glibc-7fcdb532534e46f70624fd7e3681eb6831a69303.tar.xz
glibc-7fcdb532534e46f70624fd7e3681eb6831a69303.zip
libio: Replace internal _IO_getdelim symbol with __getdelim
__getdelim is exported, _IO_getdelim is not.  Add a hidden prototype
for __getdelim.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
Diffstat (limited to 'iconv')
-rw-r--r--iconv/gconv_parseconfdir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/iconv/gconv_parseconfdir.h b/iconv/gconv_parseconfdir.h
index 915b60845c..a4153e54c6 100644
--- a/iconv/gconv_parseconfdir.h
+++ b/iconv/gconv_parseconfdir.h
@@ -23,7 +23,7 @@
 
 #if IS_IN (libc)
 # include <libio/libioP.h>
-# define __getdelim(line, len, c, fp) _IO_getdelim (line, len, c, fp)
+# define __getdelim(line, len, c, fp) __getdelim (line, len, c, fp)
 
 # undef isspace
 # define isspace(__c) __isspace_l ((__c), _nl_C_locobj_ptr)