Merge remote-tracking branch 'bb-10.1-release' into 10.1

This commit is contained in:
Oleksandr Byelkin 2020-08-10 16:07:48 +02:00
commit b350ef4cf4

View File

@ -37,7 +37,7 @@
#ifdef __linux__ #ifdef __linux__
#define PTR_SANE(p) ((p) && (char*)(p) >= heap_start && (char*)(p) <= heap_end) #define PTR_SANE(p) ((p) && (char*)(p) >= heap_start && (char*)(p) <= heap_end)
static char *heap_start; static char *heap_start;
extern char *__bss_start; char *__bss_start;
#else #else
#define PTR_SANE(p) (p) #define PTR_SANE(p) (p)
#endif /* __linux */ #endif /* __linux */