This repository has been archived on 2022-01-04. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#pragma once
|
|
|
|
#include <config.h>
|
|
|
|
#include <err.h>
|
|
|
|
#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
|
|
#define FREE(pointer) \
|
|
do { \
|
|
free(pointer); \
|
|
pointer = NULL; \
|
|
} while (0)
|
|
|
|
extern xcb_window_t root;
|