Newlib: update to version 3.0.0
This commit is contained in:
parent
a3d94f168b
commit
875aaabebe
50 changed files with 1536 additions and 1651 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue