2024-09-21 11:32:56 -04:00

10 lines
120 B
C

#include <stdlib.h>
#include "util.h"
void *checked_malloc(int len)
{
void *p = malloc(len);
assert(p);
return p;
}