diff options
author | Julien Danjou <julien@danjou.info> | 2008-09-16 11:03:23 +0200 |
---|---|---|
committer | Arnaud Fontaine <arnau@debian.org> | 2010-11-14 19:50:13 +0900 |
commit | 38a56fc80ebbd683818231fe2f8253ef93071839 (patch) | |
tree | ef1d31abd10b2a4af25913cee1f9b2b2f3a91fe1 | |
parent | f33cf7f649e14be9658e46d0978e687a76c4ea1c (diff) |
atom: include xcb headers
Signed-off-by: Julien Danjou <julien@danjou.info>
-rw-r--r-- | atom/xcb_atom.h.m4 | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/atom/xcb_atom.h.m4 b/atom/xcb_atom.h.m4 index c4f8889..d4957c5 100644 --- a/atom/xcb_atom.h.m4 +++ b/atom/xcb_atom.h.m4 @@ -1,5 +1,7 @@ -#ifndef ATOMS_H -#define ATOMS_H +#ifndef __XCB_ATOM_H__ +#define __XCB_ATOM_H__ + +#include <xcb/xcb.h> enum xcb_atom_fast_tag_t { TAG_COOKIE, @@ -27,4 +29,4 @@ char *xcb_atom_name_unique(const char *base, uint32_t id); define(`DO', `extern const xcb_atom_t $1;')dnl include(atomlist.m4)`'dnl -#endif /* ATOMS_H */ +#endif /* __XCB_ATOM_H__ */ |