#include #include #include namespace raleigh { coord::coord(uint32_t x, uint32_t y) : x(x), y(y) {} coord::coord() : x(0), y(0) {} __attribute__ ((noreturn)) void show_error_and_quitf(const char *fmt, ...) { va_list args; va_start(args, fmt); syslogf_v(fmt, args); __pcrt_quit(); } }