Newlib: update to version 3.0.0

This commit is contained in:
Our Air Quality 2018-02-17 00:43:18 +11:00
parent a3d94f168b
commit 875aaabebe
50 changed files with 1536 additions and 1651 deletions

View file

@ -38,25 +38,25 @@ _BEGIN_STD_C
#ifndef _REENT_ONLY
iconv_t
_EXFUN(iconv_open, (_CONST char *, _CONST char *));
iconv_open (const char *, const char *);
size_t
_EXFUN(iconv, (iconv_t, char **__restrict, size_t *__restrict,
char **__restrict, size_t *__restrict));
iconv (iconv_t, char **__restrict, size_t *__restrict,
char **__restrict, size_t *__restrict);
int
_EXFUN(iconv_close, (iconv_t));
iconv_close (iconv_t);
#endif
iconv_t
_EXFUN(_iconv_open_r, (struct _reent *, _CONST char *, _CONST char *));
_iconv_open_r (struct _reent *, const char *, const char *);
size_t
_EXFUN(_iconv_r, (struct _reent *, iconv_t, _CONST char **,
size_t *, char **, size_t *));
_iconv_r (struct _reent *, iconv_t, const char **,
size_t *, char **, size_t *);
int
_EXFUN(_iconv_close_r, (struct _reent *, iconv_t));
_iconv_close_r (struct _reent *, iconv_t);
_END_STD_C