summaryrefslogtreecommitdiffstats
path: root/include/mem_malloc.h
blob: 097335894d6cc796039d69412c2ce22c65e81ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __MEM_MALLOC_H
#define __MEM_MALLOC_H

#include <linux/types.h>

void mem_malloc_init(void *start, void *end);
void *sbrk_no_zero(ptrdiff_t increment);

ulong mem_malloc_start(void);
ulong mem_malloc_end(void);

#endif