summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/parse_c/lexerc.h
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/parse_c/lexerc.h')
-rw-r--r--bitbake/lib/bb/parse/parse_c/lexerc.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/bitbake/lib/bb/parse/parse_c/lexerc.h b/bitbake/lib/bb/parse/parse_c/lexerc.h
new file mode 100644
index 0000000000..0163a7d632
--- /dev/null
+++ b/bitbake/lib/bb/parse/parse_c/lexerc.h
@@ -0,0 +1,17 @@
+
+#ifndef LEXERC_H
+#define LEXERC_H
+
+#include <stdio.h>
+
+extern int lineError;
+extern int errorParse;
+
+typedef struct {
+ void *parser;
+ void *scanner;
+ FILE *file;
+ PyObject *data;
+} lex_t;
+
+#endif