libiberty.h (vasprintf): Don't declare if HAVE_DECL_VASPRINTF is not defined.

* libiberty.h (vasprintf): Don't declare if HAVE_DECL_VASPRINTF
	is not defined.

From-SVN: r270605
This commit is contained in:
Michael Forney 2019-04-26 15:35:01 +00:00 committed by Jeff Law
parent 53e6927367
commit 6b3a5e8a3d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2019-04-26 Michael Forney <mforney@mforney.org>
* libiberty.h (vasprintf): Don't declare if HAVE_DECL_VASPRINTF
is not defined.
2019-04-03 Vineet Gupta <vgupta@synopsys.com>
PR89877

View File

@ -649,7 +649,7 @@ extern int asprintf (char **, const char *, ...) ATTRIBUTE_PRINTF_2;
extern char *xasprintf (const char *, ...) ATTRIBUTE_MALLOC ATTRIBUTE_PRINTF_1;
#if !HAVE_DECL_VASPRINTF
#if defined(HAVE_DECL_VASPRINTF) && !HAVE_DECL_VASPRINTF
/* Like vsprintf but provides a pointer to malloc'd storage, which
must be freed by the caller. */