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