newlib: update

git-svn-id: svn://kolibrios.org@6099 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge)
2016-01-26 02:29:46 +00:00
parent 38392b6ca6
commit cabcfc4bb3
144 changed files with 6873 additions and 1545 deletions

View File

@@ -43,6 +43,12 @@ _DEFUN(vsscanf, (str, fmt, ap),
return _vsscanf_r (_REENT, str, fmt, ap);
}
#ifdef _NANO_FORMATTED_IO
int
_EXFUN(vsiscanf, (const char *, const char *, __VALIST)
_ATTRIBUTE ((__alias__("vsscanf"))));
#endif
#endif /* !_REENT_ONLY */
int
@@ -63,3 +69,9 @@ _DEFUN(_vsscanf_r, (ptr, str, fmt, ap),
f._file = -1; /* No file. */
return __ssvfscanf_r (ptr, &f, fmt, ap);
}
#ifdef _NANO_FORMATTED_IO
int
_EXFUN(_vsiscanf_r, (struct _reent *, const char *, const char *, __VALIST)
_ATTRIBUTE ((__alias__("_vsscanf_r"))));
#endif