4-variable-simplifier/memory/smalloc.c
2026-04-25 16:00:10 -04:00

19 lines
192 B
C

#include <stdlib.h>
#include <debug.h>
#include "smalloc.h"
void* smalloc(size_t size)
{
void* ptr = malloc(size);
if (!ptr)
{
TODO;
}
return ptr;
}