mirror of
https://github.com/topjohnwu/crt0.git
synced 2024-11-30 06:40:34 +00: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
|