merge from gcc
This commit is contained in:
parent
e05b62ac69
commit
f9b4e353bb
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-09-08 Adam Nemet <anemet@lnxw.com>
|
||||
|
||||
* vasprintf.c: Accept __va_copy in addition to va_copy.
|
||||
|
||||
2004-09-03 Paolo Bonzini <bonzini@gnu.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
|
|
@ -27,6 +27,9 @@ Boston, MA 02111-1307, USA. */
|
|||
#else
|
||||
#include <varargs.h>
|
||||
#endif
|
||||
#if !defined (va_copy) && defined (__va_copy)
|
||||
# define va_copy(d,s) __va_copy((d),(s))
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
|
|
Loading…
Reference in a new issue