MWCC/command_line/CmdLine/Src/OSLib/MemUtils.c

22 lines
240 B
C

#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) {
}