blob: 1858291683c816ae6131377618ae783924c55b37 [file] [log] [blame]
#ifndef H_MEMUTIL
#define H_MEMUTIL
#include <stdlib.h>
#define CALLOC_STRUCT(T) (struct T *) calloc(1, sizeof(struct T))
#endif