X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=lib%2Fxalloc.h;h=952f9217b953399d4de0cafb7da2917fba9474d4;hb=b47fbb8c5be20000f504e9e65d8ef0376ae92ff9;hp=7cb486a202c89893f5af46a2f623b0d9ad1dea80;hpb=d798b8b3d832f8c69769e08cfd64a4d8355faf0e;p=oweals%2Ftinc.git diff --git a/lib/xalloc.h b/lib/xalloc.h index 7cb486a..952f921 100644 --- a/lib/xalloc.h +++ b/lib/xalloc.h @@ -16,7 +16,7 @@ extern int xalloc_exit_failure; extern char *const xalloc_msg_memory_exhausted; /* FIXME: describe */ -extern void (*xalloc_fail_func) (); +extern void (*xalloc_fail_func) (int); void *xmalloc PARAMS ((size_t n)) __attribute__ ((__malloc__)); void *xmalloc_and_zero PARAMS ((size_t n)) __attribute__ ((__malloc__)); @@ -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);