Skip to content
Snippets Groups Projects
Commit 626ff3de authored by Adam Nemet's avatar Adam Nemet Committed by Adam Nemet
Browse files

* vasprintf.c: Accept __va_copy in addition to va_copy.

From-SVN: r87203
parent 2e8401ae
No related branches found
No related tags found
No related merge requests found
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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment