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