More fiddling with the automake stuff.
[liboconfig.git] / src / parser.y
index 9932469..7f048d0 100644 (file)
@@ -2,20 +2,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include "oconfig.h"
-
-struct statement_list_s
-{
-       oconfig_item_t *statement;
-       int             statement_num;
-};
-typedef struct statement_list_s statement_list_t;
-
-struct argument_list_s
-{
-       oconfig_value_t *argument;
-       int              argument_num;
-};
-typedef struct argument_list_s argument_list_t;
+#include "aux_types.h"
 
 static char *unquote (const char *orig);
 static void dump_ci (oconfig_item_t *ci, int shift);
@@ -170,7 +157,9 @@ entire_file:
        ;
 
 %%
+#if 0
 #include "scanner.c"
+#endif
 
 static char *unquote (const char *orig)
 {