]> git.draconx.ca Git - cdecl99.git/commitdiff
Include config.h in all C source files.
authorNick Bowler <nbowler@draconx.ca>
Wed, 21 Sep 2011 23:13:50 +0000 (19:13 -0400)
committerNick Bowler <nbowler@draconx.ca>
Thu, 22 Sep 2011 01:08:57 +0000 (21:08 -0400)
Some source files failed to include config.h, which is needed for
some things to work.

src/declare.c
src/explain.c
src/output.c
src/parse-decl.c
src/typemap.c

index 90a593d327e4493942086f4779d1e25accebba70..9cfc3bf2b9fea4cd193946f0b00ccfe9f6005cca 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include <stdio.h>
 #include <assert.h>
 
index d50e45e208a3d171588bcbdcf58f7e2734e2f505..902784cc66cb23a000e079c044b8b24db926e13a 100644 (file)
@@ -15,6 +15,7 @@
  *  You should have received a copy of the GNU General Public License
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+#include <config.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdarg.h>
index 3d0a9236532a8953e05553cd22f3340f1fb43ef4..5699a0b5e3f05a9ac9d286a5d3ded3190e7a459f 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include <stdio.h>
 #include <assert.h>
 
index dc187c00b00c440eb5b059781b376f4e3ffdf712..0d26b9d9dbdf07ed00719cb1d66916c4a6e4f326 100644 (file)
@@ -15,6 +15,7 @@
  *  You should have received a copy of the GNU General Public License
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+#include <config.h>
 #include <stdio.h>
 #include <assert.h>
 #include <stdbool.h>
index cab18c8e793773e52dd536eec87fa6e5821bd4ea..b8965a1b05d816d680a2375c3099e1bbe305e30f 100644 (file)
@@ -15,6 +15,7 @@
  *  You should have received a copy of the GNU General Public License
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+#include <config.h>
 #include <stdio.h>
 #include <stdbool.h>
 #include "cdecl.h"