diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/util.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 9a9fa5bd5..aa0cba88a 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2009-09-03 Werner Koch <[email protected]> + + * util.h (xtryvasprintf): New. + 2009-08-25 Werner Koch <[email protected]> * compat.h: Add xstrconcat. diff --git a/include/util.h b/include/util.h index 72e3959e2..4b3c40bbb 100644 --- a/include/util.h +++ b/include/util.h @@ -20,9 +20,7 @@ #ifndef G10_UTIL_H #define G10_UTIL_H -#if defined (_WIN32) || defined (__CYGWIN32__) #include <stdarg.h> -#endif #include "types.h" #include "errors.h" @@ -245,6 +243,7 @@ int write_w32_registry_string(const char *root, const char *dir, /*-- strgutil.c --*/ char *xasprintf (const char *fmt, ...); char *xtryasprintf (const char *fmt, ...); +char *xtryvasprintf (const char *fmt, va_list arg_ptr); /*-- pka.c --*/ |