2013-12-29 06:11:50 +04:00
|
|
|
#pragma once
|
2009-09-20 17:44:14 +04:00
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
|
|
|
|
#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
|
2011-01-12 12:12:24 +03:00
|
|
|
#define FREE(pointer) do { \
|
|
|
|
if (pointer != NULL) { \
|
|
|
|
free(pointer); \
|
|
|
|
pointer = NULL; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
2009-09-20 17:44:14 +04:00
|
|
|
|
2011-01-28 02:41:53 +03:00
|
|
|
extern xcb_window_t root;
|