/* See LICENSE file for copyright and license details. */
#ifndef UTIL_H
#define UTIL_H
#include <stddef.h>
void die(const char *fmt, ...);
void warn(const char *fmt, ...);
void *ecalloc(size_t nmemb, size_t size);
void *emalloc(size_t size);
char *estrdup(const char *s);
int mkdirp(const char *path);
#endif /* UTIL_H */