/*
  err.h - Error codes

*/

/* ---------- Function declarations ---------- */
int do_error(int, char *);

/* ---------- Warnings ---------- */
#define NO_ERR 0
#define WARN_BOGUSXEV 1

/* ---------- Fatal errors ---------- */
#define ERR_NODISPLAY -1
#define ERR_NOOPENWINDOW -2
#define ERR_NOMEM -3
#define ERR_NOWIND -4
