From c416fe0da43f9caffd8b5f6c1a627c8f7a16f881 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 28 Nov 2019 09:51:58 +0000 Subject: Add xrecallocarray. --- xmalloc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'xmalloc.h') diff --git a/xmalloc.h b/xmalloc.h index a3ee486f..3fe4f1cc 100644 --- a/xmalloc.h +++ b/xmalloc.h @@ -23,6 +23,7 @@ void *xmalloc(size_t); void *xcalloc(size_t, size_t); void *xrealloc(void *, size_t); void *xreallocarray(void *, size_t, size_t); +void *xrecallocarray(void *, size_t, size_t, size_t); char *xstrdup(const char *); char *xstrndup(const char *, size_t); int xasprintf(char **, const char *, ...) -- cgit