#ifndef _UTIL_H
#define _UTIL_H

#include <string.h>
#include "u.h"

#define ezalloc(l) memset(ealloc(l), 0, l)

void *ealloc(ulong);
ushort month_days(const uint, const ushort);

#endif
