From: Florian Weimer Date: Thu, 24 Nov 2022 11:57:49 +0100 Subject: [PATCH] configure.ac: C99 fix for ERTS___AFTER_MORECORE_HOOK_CAN_TRACK_MALLOC #include for the sbrk function if the header is available. diff --git a/erts/configure b/erts/configure index b395d4e891..432067c52c 100755 --- a/erts/configure +++ b/erts/configure @@ -20909,6 +20909,9 @@ else $as_nop #ifdef HAVE_MALLOC_H # include #endif +#ifdef HAVE_UNISTD_H +# include +#endif #if defined(HAVE_END_SYMBOL) extern char end; #elif defined(HAVE__END_SYMBOL) diff --git a/erts/configure.ac b/erts/configure.ac index f944657fba..c55c9e5339 100644 --- a/erts/configure.ac +++ b/erts/configure.ac @@ -2450,6 +2450,9 @@ AC_CACHE_CHECK([if __after_morecore_hook can track malloc()s core memory use], #ifdef HAVE_MALLOC_H # include #endif +#ifdef HAVE_UNISTD_H +# include +#endif #if defined(HAVE_END_SYMBOL) extern char end; #elif defined(HAVE__END_SYMBOL)