Improve the include situation

Slightly clean up header inclusion with the help of clang's module system.
It's better for files to include the things you need directly.

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui
2019-01-18 23:30:44 +00:00
parent c93789f5e9
commit 1e0deea57f
17 changed files with 39 additions and 30 deletions

View File

@ -3,12 +3,14 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>
#include <stdlib.h>
#include <xcb/xcb.h>
#include <xcb/render.h>
#include <xcb/sync.h>
#include <xcb/xfixes.h>
#include <xcb/xcb_renderutil.h>
#include "compiler.h"
#include "region.h"
typedef struct session session_t;