System info & network
This commit is contained in:
10
code/lib/memory.h
Normal file
10
code/lib/memory.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#ifndef _PIUMA_LIB_MEMORY_H_
|
||||
#define _PIUMA_LIB_MEMORY_H_
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
typedef void *(*alloc_t)(size_t size);
|
||||
typedef void *(*realloc_t)(void *ptr, size_t size);
|
||||
typedef void (*free_t)(void *ptr);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user