From 45e57168fa0d33206731e391fb24759ddf179861 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Wed, 12 Oct 2022 03:03:57 +0100 Subject: lots more reorganisation, done part of OSLib --- command_line/CmdLine/Src/OSLib/MemUtils.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'command_line/CmdLine/Src/OSLib/MemUtils.c') 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) { + +} -- cgit v1.2.3