aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/include/iconv.h
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/include/iconv.h')
-rw-r--r--newlib/libc/include/iconv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/include/iconv.h b/newlib/libc/include/iconv.h
index 4c023e9..e19f73d 100644
--- a/newlib/libc/include/iconv.h
+++ b/newlib/libc/include/iconv.h
@@ -38,7 +38,7 @@ _BEGIN_STD_C
#ifndef _REENT_ONLY
iconv_t
-_EXFUN(iconv_open, (_CONST char *, _CONST char *));
+_EXFUN(iconv_open, (const char *, const char *));
size_t
_EXFUN(iconv, (iconv_t, char **__restrict, size_t *__restrict,
@@ -49,10 +49,10 @@ _EXFUN(iconv_close, (iconv_t));
#endif
iconv_t
-_EXFUN(_iconv_open_r, (struct _reent *, _CONST char *, _CONST char *));
+_EXFUN(_iconv_open_r, (struct _reent *, const char *, const char *));
size_t
-_EXFUN(_iconv_r, (struct _reent *, iconv_t, _CONST char **,
+_EXFUN(_iconv_r, (struct _reent *, iconv_t, const char **,
size_t *, char **, size_t *));
int