X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=lib%2Fxalloc.h;h=51f99bdfd2d322544999c685f01f7800b8ae040c;hp=3f8d779253c6f36828b7df6a075dae8871c66bbb;hb=5e0efd53e797a2b5468b91b41b6122f3b942efb2;hpb=1243156a5e03a666b36bc4400f1402243a85c9a7 diff --git a/lib/xalloc.h b/lib/xalloc.h index 3f8d7792..51f99bdf 100644 --- a/lib/xalloc.h +++ b/lib/xalloc.h @@ -1,3 +1,5 @@ +#include + #ifndef PARAMS # if defined PROTOTYPES || (defined __STDC__ && __STDC__) # define PARAMS(Args) Args @@ -16,6 +18,12 @@ extern char *const xalloc_msg_memory_exhausted; /* FIXME: describe */ extern void (*xalloc_fail_func) (); -void *xmalloc PARAMS ((size_t n)); +void *xmalloc PARAMS ((size_t n)) __attribute__ ((__malloc__)); +void *xmalloc_and_zero PARAMS ((size_t n)) __attribute__ ((__malloc__)); void *xcalloc PARAMS ((size_t n, size_t s)); -void *xrealloc PARAMS ((void *p, size_t n)); +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);