13 lines
165 B
C
13 lines
165 B
C
//
|
|
// Created by Elias Bennour on 28.01.24.
|
|
//
|
|
|
|
#ifndef NINJA_HEAP_H
|
|
#define NINJA_HEAP_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
void* my_malloc(size_t size);
|
|
|
|
#endif //NINJA_HEAP_H
|