diff options
| author | Josh Triplett <josh@freedesktop.org> | 2007-07-14 12:57:03 -0700 |
|---|---|---|
| committer | Josh Triplett <josh@freedesktop.org> | 2007-07-14 12:57:03 -0700 |
| commit | c8d633e1b79b6f87284335c76a1c1418d9b48fad (patch) | |
| tree | 48ef953183b035a6d36c2c37f7c6d65c32649775 | |
| parent | fa8fd13f0b27306a4c210b9092cb40324e8399e3 (diff) | |
| download | sparse-dev-c8d633e1b79b6f87284335c76a1c1418d9b48fad.tar.gz | |
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>
| -rw-r--r-- | expression.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/expression.h b/expression.h index fa5039ab..87f774d9 100644 --- a/expression.h +++ b/expression.h @@ -12,6 +12,8 @@ */ #include "allocate.h" +#include "lib.h" +#include "symbol.h" struct expression_list; |
