mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 05:40:38 +01:00
9 lines
135 B
C
9 lines
135 B
C
#ifndef LIB_MALLOC_H
|
|
#define LIB_MALLOC_H
|
|
|
|
void free(void *ptr);
|
|
void * malloc(int size);
|
|
void * realloc(void *ptr, int size);
|
|
|
|
#endif
|