unbreak cmake build around HAVE_SBRK check

This commit is contained in:
Aliaksey Kandratsenka 2024-04-30 23:11:05 -04:00
parent 1bdabc0e37
commit a038c8c23f

View File

@ -434,7 +434,7 @@ void* sbrk(intptr_t increment) __THROW {
#endif
#if defined(__FreeBSD__) && defined(_LP64) && HAVE_SBRK
#if defined(__FreeBSD__) && defined(_LP64) && defined(HAVE_SBRK)
extern "C" PERFTOOLS_DLL_DECL void* sbrk(intptr_t increment) __THROW ATTRIBUTE_SECTION(malloc_hook);
void* sbrk(intptr_t increment) __THROW {