update
This commit is contained in:
12
djstdlib/os.h
Normal file
12
djstdlib/os.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#ifndef OS_H
|
||||
#define OS_H
|
||||
|
||||
#include "core.h"
|
||||
|
||||
// ### Memory ###
|
||||
void *os_alloc(size_t capacity);
|
||||
void os_reserve(void *ptr);
|
||||
void os_decommit(void *ptr);
|
||||
void os_free(void *ptr, size_t freeSize);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user