blob: 2e8697f3b55f80b4803a66ee8f38d413c708d0a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MELVIX_ALLOC_H
#define MELVIX_ALLOC_H
#include <stdint.h>
void *malloc(u32);
void *valloc(u32 req_size); // Page-aligned
void *realloc(void *, u32);
void *calloc(u32, u32);
void free(void *);
#endif
|