aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/menu/util.h
blob: 289720ae37a37640eea46f2f910fd67437a5232b (plain)
1
2
3
4
5
6
/* See LICENSE file for copyright and license details. */

#define BETWEEN(X, A, B)        ((A) <= (X) && (X) <= (B))

void die(const char *fmt, ...);
void *ecalloc(size_t nmemb, size_t size);