Move the includes after the include guard, no need to include these files more than once

next
Michael Stapelberg 2011-10-10 15:21:08 +01:00
parent 997a539a8a
commit ae7dec2774
1 changed files with 4 additions and 2 deletions

View File

@ -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"
/*