From a2befe3383bd1c6dfe3950b5f6d835f3f750a68f Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Fri, 10 May 2019 11:06:51 -0500 Subject: [PATCH] unconditionally define reallocarray deal with systems missing it but with it exported as a symbol --- include/compat/stdlib.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/compat/stdlib.h b/include/compat/stdlib.h index e629884..2eaea24 100644 --- a/include/compat/stdlib.h +++ b/include/compat/stdlib.h @@ -33,9 +33,7 @@ void freezero(void *ptr, size_t sz); const char * getprogname(void); #endif -#ifndef HAVE_REALLOCARRAY void *reallocarray(void *, size_t, size_t); -#endif #ifndef HAVE_RECALLOCARRAY void *recallocarray(void *, size_t, size_t, size_t);