diff options
author | Ash Wolf <ninji@wuffs.org> | 2022-10-12 03:03:57 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2022-10-12 03:03:57 +0100 |
commit | 45e57168fa0d33206731e391fb24759ddf179861 (patch) | |
tree | d09621ca6e201865ce9975fa72426f63ac054fd3 /command_line/CmdLine/Src/OSLib/MemUtils.c | |
parent | 4c9d73d7243c82ca3f55d2d8a388328968303b3f (diff) | |
download | MWCC-45e57168fa0d33206731e391fb24759ddf179861.tar.gz MWCC-45e57168fa0d33206731e391fb24759ddf179861.zip |
lots more reorganisation, done part of OSLib
Diffstat (limited to 'command_line/CmdLine/Src/OSLib/MemUtils.c')
-rw-r--r-- | command_line/CmdLine/Src/OSLib/MemUtils.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/command_line/CmdLine/Src/OSLib/MemUtils.c b/command_line/CmdLine/Src/OSLib/MemUtils.c index e69de29..4eb611c 100644 --- a/command_line/CmdLine/Src/OSLib/MemUtils.c +++ b/command_line/CmdLine/Src/OSLib/MemUtils.c @@ -0,0 +1,21 @@ +#include "oslib.h" + +void *xmalloc(const char *what, int size) { + +} + +void *xcalloc(const char *what, int size) { + +} + +void *xrealloc(const char *what, void *old, int size) { + +} + +char *xstrdup(const char *str) { + +} + +void xfree(void *ptr) { + +} |