mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-05-22 19:08:55 +02:00
17 lines
388 B
C
17 lines
388 B
C
// Configure dlmalloc
|
|
|
|
#define USE_LOCKS 0
|
|
#define INSECURE 1
|
|
#define HAVE_MORECORE 0
|
|
#define NO_MALLINFO 1
|
|
#define NO_MALLOC_STATS 1
|
|
#define LACKS_TIME_H 1
|
|
#define malloc_getpagesize 4096
|
|
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wunused-but-set-variable"
|
|
|
|
#include "dlmalloc/malloc.c"
|
|
|
|
#pragma clang diagnostic pop
|