molehole/include/util.h

12 lines
210 B
C
Executable File

#ifndef _UTIL_H_
#define _UTIL_H_
#include <stdnoreturn.h>
/**
* Kill program by printing message `*s` and errno.
*
* Shuts down ncurses before killing program.
*/
noreturn void die(const char *s);
#endif