From c55320e9e2a8916e911bcd39ab37b79e3a7d03b2 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Mon, 11 Jan 2021 20:43:27 +0100 Subject: New upstream version 3.0.5 --- XUtils.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'XUtils.h') diff --git a/XUtils.h b/XUtils.h index 19cfadb..9e5e62c 100644 --- a/XUtils.h +++ b/XUtils.h @@ -23,10 +23,14 @@ void fail(void) ATTR_NORETURN; void* xMalloc(size_t size); +void* xMallocArray(size_t nmemb, size_t size); + void* xCalloc(size_t nmemb, size_t size); void* xRealloc(void* ptr, size_t size); +void* xReallocArray(void* ptr, size_t nmemb, size_t size); + /* * String_startsWith gives better performance if strlen(match) can be computed * at compile time (e.g. when they are immutable string literals). :) -- cgit v1.2.3