Build fix: Explicitly include stdint.h before cfgparse.tab.h

cfgparse.tab.h uses uint32_t, which is defined in stdint.h.

Should fix the build of 3.ε-bf2 on FreeBSD.

Signed-off-by: Raphael Kubo da Costa <kubito@gmail.com>
This commit is contained in:
Raphael Kubo da Costa 2011-01-22 16:03:29 -02:00 committed by Michael Stapelberg
parent 0609c1bf3e
commit 9223a39a65
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@
*/ */
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <stdint.h> /* Defines uint32_t, required by cfgparse.tab.h */
#include "cfgparse.tab.h" #include "cfgparse.tab.h"
#include <xcb/xcb.h> #include <xcb/xcb.h>