diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-11-12 22:32:48 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-11-13 10:15:46 +1100 |
commit | 166927fd410823eec8a7b2472463db51e0e6fef5 (patch) | |
tree | 6ed8e9b9ad379acf14bdb15f95afd9a367c811ae /xmalloc.h | |
parent | 782093ec6cf64cc6c4078410093359869ea9329f (diff) |
upstream: add xvasprintf()
OpenBSD-Commit-ID: e5e3671c05c121993b034db935bce1a7aa372247
Diffstat (limited to 'xmalloc.h')
-rw-r--r-- | xmalloc.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: xmalloc.h,v 1.18 2019/06/06 05:13:13 otto Exp $ */ +/* $OpenBSD: xmalloc.h,v 1.19 2019/11/12 22:32:48 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -24,3 +24,5 @@ char *xstrdup(const char *); int xasprintf(char **, const char *, ...) __attribute__((__format__ (printf, 2, 3))) __attribute__((__nonnull__ (2))); +int xvasprintf(char **, const char *, va_list) + __attribute__((__nonnull__ (2))); |