blob: 941882479901ce80a2e50487326e33a69f5001f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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
|