Move the includes after the include guard, no need to include these files more than once
This commit is contained in:
parent
997a539a8a
commit
ae7dec2774
|
@ -7,13 +7,15 @@
|
|||
* include/data.h: This file defines all data structures used by i3
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _DATA_H
|
||||
#define _DATA_H
|
||||
|
||||
#include <xcb/randr.h>
|
||||
#include <xcb/xcb_atom.h>
|
||||
#include <stdbool.h>
|
||||
#include <pcre.h>
|
||||
|
||||
#ifndef _DATA_H
|
||||
#define _DATA_H
|
||||
#include "queue.h"
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue