X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=lib%2Fxalloc.h;h=51f99bdfd2d322544999c685f01f7800b8ae040c;hp=7cb486a202c89893f5af46a2f623b0d9ad1dea80;hb=5e0efd53e797a2b5468b91b41b6122f3b942efb2;hpb=013a2e159e42c46808ea8d0b6abd57525db30a50 diff --git a/lib/xalloc.h b/lib/xalloc.h index 7cb486a2..51f99bdf 100644 --- a/lib/xalloc.h +++ b/lib/xalloc.h @@ -24,3 +24,6 @@ void *xcalloc PARAMS ((size_t n, size_t s)); void *xrealloc PARAMS ((void *p, size_t n)) __attribute__ ((__malloc__)); char *xstrdup PARAMS ((const char *s)) __attribute__ ((__malloc__)); + +extern int xasprintf(char **strp, const char *fmt, ...); +extern int xvasprintf(char **strp, const char *fmt, va_list ap);