mem: Remove memalign

It doesn't do what it should anyway.
This commit is contained in:
CTCaer
2019-08-28 02:08:12 +03:00
parent 9533dea124
commit f3d071ca69
6 changed files with 6 additions and 18 deletions

View File

@@ -23,6 +23,5 @@ void heap_init(u32 base);
void *malloc(u32 size);
void *calloc(u32 num, u32 size);
void free(void *buf);
void *memalign(u32 align, u32 size);
#endif