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

@@ -33,6 +33,12 @@ _DEFUN(_vdprintf_r, (ptr, fd, format, ap),
return n;
}
#ifdef _NANO_FORMATTED_IO
int
_EXFUN(_vdiprintf_r, (struct _reent *, int, const char *, __VALIST)
_ATTRIBUTE ((__alias__("_vdprintf_r"))));
#endif
#ifndef _REENT_ONLY
int
@@ -44,4 +50,9 @@ _DEFUN(vdprintf, (fd, format, ap),
return _vdprintf_r (_REENT, fd, format, ap);
}
#ifdef _NANO_FORMATTED_IO
int
_EXFUN(vdiprintf, (int, const char *, __VALIST)
_ATTRIBUTE ((__alias__("vdprintf"))));
#endif
#endif /* ! _REENT_ONLY */