Browse Source

merge from gcc

jimb-rda-nptl-branch
DJ Delorie 22 years ago
parent
commit
f9b4e353bb
  1. 4
      libiberty/ChangeLog
  2. 3
      libiberty/vasprintf.c

4
libiberty/ChangeLog

@ -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.

3
libiberty/vasprintf.c

@ -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…
Cancel
Save