aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2007-07-14 12:57:03 -0700
committerJosh Triplett <josh@freedesktop.org>2007-07-14 12:57:03 -0700
commitc8d633e1b79b6f87284335c76a1c1418d9b48fad (patch)
tree48ef953183b035a6d36c2c37f7c6d65c32649775 /expression.h
parentSplit c2xml build rule into compile and link stages, and add the quiet prefixes (diff)
downloadsparse-c8d633e1b79b6f87284335c76a1c1418d9b48fad.tar.gz
sparse-c8d633e1b79b6f87284335c76a1c1418d9b48fad.tar.bz2
sparse-c8d633e1b79b6f87284335c76a1c1418d9b48fad.zip
expression.h needs lib.h for struct position and symbol.h for int_ctype
expression.h didn't work if included alone, before any other headers; fix that by having it include the headers it needs. Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'expression.h')
-rw-r--r--expression.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/expression.h b/expression.h
index fa5039a..87f774d 100644
--- a/expression.h
+++ b/expression.h
@@ -12,6 +12,8 @@
*/
#include "allocate.h"
+#include "lib.h"
+#include "symbol.h"
struct expression_list;