19 lines
192 B
C
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;
|
|
}
|
|
|