mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-07-12 00:12:13 +02:00
10 lines
183 B
C
10 lines
183 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define GUARD_SLABS true
|
|
#define WRITE_AFTER_FREE_CHECK true
|
|
#define SLOT_RANDOMIZE true
|
|
#define ZERO_ON_FREE true
|
|
#define SLAB_CANARY true
|
|
|
|
#endif
|