summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Safranek <jsafrane@redhat.com>2009-03-26 15:04:41 +0100
committerJan Safranek <jsafrane@redhat.com>2009-03-26 15:04:41 +0100
commitb9d14a8371e558e2609155aafb9f92808965b1e7 (patch)
tree3c0818c069a42590de4a2729ecba97b7cff1a1bf
parentb491ec4a847043c59798066e02701cfd435811f9 (diff)
downloadlibcg-b9d14a8371e558e2609155aafb9f92808965b1e7.tar.gz
libcg-b9d14a8371e558e2609155aafb9f92808965b1e7.tar.xz
libcg-b9d14a8371e558e2609155aafb9f92808965b1e7.zip
Fix compilation of some stuff
yacc does not generate y.tab.h, it has different name now. Signed-off-by: Jan Safranek <jsafrane@redhat.com>
-rw-r--r--src/lex.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lex.l b/src/lex.l
index 48a53b4..817b6b6 100644
--- a/src/lex.l
+++ b/src/lex.l
@@ -13,7 +13,7 @@
%{
#include <string.h>
-#include "y.tab.h"
+#include "parse.h"
int line_no = 1;
%}