mirror of
https://github.com/gperftools/gperftools
synced 2025-03-07 21:37:56 +00:00
unbreak cmake build around HAVE_SBRK check
This commit is contained in:
parent
1bdabc0e37
commit
a038c8c23f
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user