diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-07-07 18:33:52 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-07-07 18:33:52 +0200 |
commit | 7fcdb532534e46f70624fd7e3681eb6831a69303 (patch) | |
tree | 60f16913ffc4d1d1464900883d12789e80efedee /iconv | |
parent | 771473a8c4f44d11e8e6521a96f4e92c20984eb3 (diff) | |
download | glibc-7fcdb532534e46f70624fd7e3681eb6831a69303.zip glibc-7fcdb532534e46f70624fd7e3681eb6831a69303.tar.gz glibc-7fcdb532534e46f70624fd7e3681eb6831a69303.tar.bz2 |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconv/gconv_parseconfdir.h b/iconv/gconv_parseconfdir.h index 915b608..a4153e5 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) |