aboutsummaryrefslogtreecommitdiff
path: root/libiberty/asprintf.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2014-01-21 15:09:10 +0000
committerTom Tromey <tromey@gcc.gnu.org>2014-01-21 15:09:10 +0000
commitd2d21de9dc8d2fb57be7c3c95f48679f19673702 (patch)
tree56d178887d5c3ae814e15a8a05ae0f6fca58b930 /libiberty/asprintf.c
parent579847c27262b011e96575c8ac74d0aa118152f0 (diff)
downloadgcc-d2d21de9dc8d2fb57be7c3c95f48679f19673702.zip
gcc-d2d21de9dc8d2fb57be7c3c95f48679f19673702.tar.gz
gcc-d2d21de9dc8d2fb57be7c3c95f48679f19673702.tar.bz2
include
* ansidecl.h (ANSI_PROTOTYPES, PTRCONST, LONG_DOUBLE, PARAMS) (VPARAMS, VA_START, VA_OPEN, VA_CLOSE, VA_FIXEDARG, CONST) (VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID, AND, DOTS) (NOARGS): Don't define. * libiberty.h (expandargv, writeargv): Don't use PARAMS. libiberty * _doprint.c (checkit): Use stdarg, not VA_* macros. * asprintf.c (asprintf): Use stdarg, not VA_* macros. * concat.c (concat_length, concat_copy, concat_copy2, concat) (reconcat): Use stdarg, not VA_* macros. * snprintf.c (snprintf): Use stdarg, not VA_* macros. * vasprintf.c (checkit): Use stdarg, not VA_* macros. * vsnprintf.c (checkit): Use stdarg, not VA_* macros. From-SVN: r206881
Diffstat (limited to 'libiberty/asprintf.c')
-rw-r--r--libiberty/asprintf.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/libiberty/asprintf.c b/libiberty/asprintf.c
index 3cf5052..961ad4d 100644
--- a/libiberty/asprintf.c
+++ b/libiberty/asprintf.c
@@ -1,6 +1,6 @@
/* Like sprintf but provides a pointer to malloc'd storage, which must
be freed by the caller.
- Copyright (C) 1997, 2003 Free Software Foundation, Inc.
+ Copyright (C) 1997, 2003, 2013 Free Software Foundation, Inc.
Contributed by Cygnus Solutions.
This file is part of the libiberty library.
@@ -47,10 +47,9 @@ int
asprintf (char **buf, const char *fmt, ...)
{
int status;
- VA_OPEN (ap, fmt);
- VA_FIXEDARG (ap, char **, buf);
- VA_FIXEDARG (ap, const char *, fmt);
+ va_list ap;
+ va_start (ap, fmt);
status = vasprintf (buf, fmt, ap);
- VA_CLOSE (ap);
+ va_end (ap);
return status;
}