1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

(vasprintf): Also fixed the prototype.

This commit is contained in:
Werner Koch 2003-11-13 19:15:38 +00:00
parent 53272a25fc
commit 9b32497c7e
2 changed files with 3 additions and 1 deletions

View file

@ -112,7 +112,7 @@ int is_file_compressed (const char *s, int *ret_rc);
/*-- replacement functions from funcname.c --*/
#if !HAVE_VASPRINTF
#include <stdarg.h>
int vasprintf (char **result, const char *format, va_list *args);
int vasprintf (char **result, const char *format, va_list args);
int asprintf (char **result, const char *format, ...);
#endif