hardened_malloc/config.h
2018-10-06 15:17:55 -04:00

14 lines
234 B
C

#ifndef CONFIG_H
#define CONFIG_H
#include <stdbool.h>
#define GUARD_SLABS true
#define WRITE_AFTER_FREE_CHECK true
#define SLOT_RANDOMIZE true
#define ZERO_ON_FREE true
#define SLAB_CANARY true
#define GUARD_SIZE_DIVISOR 2
#endif