* libc/include/stdio.h: Declare various C99 printf/scanf functions for
C++11, too.
This commit is contained in:
parent
d8b41bc3d0
commit
7e9b678464
|
@ -1,3 +1,8 @@
|
||||||
|
2014-05-05 Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
|
||||||
|
* libc/include/stdio.h: Declare various C99 printf/scanf functions for
|
||||||
|
C++11, too.
|
||||||
|
|
||||||
2014-04-22 Richard Earnshaw <rearnsha@arm.com>
|
2014-04-22 Richard Earnshaw <rearnsha@arm.com>
|
||||||
|
|
||||||
* libc/machine/arm/strcmp-arm-tiny.S: New file.
|
* libc/machine/arm/strcmp-arm-tiny.S: New file.
|
||||||
|
|
|
@ -232,7 +232,7 @@ int _EXFUN(fseeko, (FILE *, off_t, int));
|
||||||
off_t _EXFUN(ftello, ( FILE *));
|
off_t _EXFUN(ftello, ( FILE *));
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if !defined(__STRICT_ANSI__) || (__STDC_VERSION__ >= 199901L)
|
#if !defined(__STRICT_ANSI__) || (__STDC_VERSION__ >= 199901L) || (__cplusplus >= 201103L)
|
||||||
#ifndef _REENT_ONLY
|
#ifndef _REENT_ONLY
|
||||||
int _EXFUN(asiprintf, (char **, const char *, ...)
|
int _EXFUN(asiprintf, (char **, const char *, ...)
|
||||||
_ATTRIBUTE ((__format__ (__printf__, 2, 3))));
|
_ATTRIBUTE ((__format__ (__printf__, 2, 3))));
|
||||||
|
|
Loading…
Reference in New Issue