]> git.sur5r.net Git - i3/i3/commitdiff
Fix some compilation warnings (Thanks mxf)
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 26 Sep 2009 11:30:32 +0000 (13:30 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 26 Sep 2009 11:30:32 +0000 (13:30 +0200)
src/cfgparse.l
src/cfgparse.y
src/config.c

index c319137bc6c3c4be6fda971e3fc6b4243f2b87ab..7880ef7c4c1be05d7967e7c3129d7419cb53106e 100644 (file)
@@ -1,5 +1,6 @@
 %{
 #include <stdio.h>
+#include <string.h>
 #include "cfgparse.tab.h"
 #include <xcb/xcb.h>
 
index 7875f86ebaff72ce4335c87aaaf732cb1ace17c5..9464e3b128f63e4418a8df4f620d6328e61652de 100644 (file)
@@ -15,6 +15,8 @@
 #include "util.h"
 #include "queue.h"
 #include "table.h"
+#include "workspace.h"
+#include "xcb.h"
 
 extern int yylex(void);
 extern FILE *yyin;
index ffc8b7ed6c7e0a0941527314153ae2cbd17ead2a..b9722fc59abd225f54749b6ce0b44dd2350b966d 100644 (file)
 #include "table.h"
 #include "workspace.h"
 
+/* prototype for src/cfgparse.y, will be cleaned up as soon as we completely
+ * switched to the new scanner/parser. */
+void parse_file(const char *f);
+
 Config config;
 
 bool config_use_lexer = false;