hardened_malloc/memory.h
2018-08-29 00:53:38 -04:00

11 lines
191 B
C

#ifndef MEMORY_H
#define MEMORY_H
#include <stddef.h>
void *memory_map(size_t size);
int memory_unmap(void *ptr, size_t size);
int memory_protect(void *ptr, size_t size, int prot);
#endif