From cbf38d096b4ea7ef309efedadf6abcf6f09de7d3 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Wed, 21 Sep 2011 19:13:50 -0400 Subject: [PATCH] Include config.h in all C source files. Some source files failed to include config.h, which is needed for some things to work. --- src/declare.c | 1 + src/explain.c | 1 + src/output.c | 1 + src/parse-decl.c | 1 + src/typemap.c | 1 + 5 files changed, 5 insertions(+) diff --git a/src/declare.c b/src/declare.c index 90a593d..9cfc3bf 100644 --- a/src/declare.c +++ b/src/declare.c @@ -1,3 +1,4 @@ +#include #include #include diff --git a/src/explain.c b/src/explain.c index d50e45e..902784c 100644 --- a/src/explain.c +++ b/src/explain.c @@ -15,6 +15,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ +#include #include #include #include diff --git a/src/output.c b/src/output.c index 3d0a923..5699a0b 100644 --- a/src/output.c +++ b/src/output.c @@ -1,3 +1,4 @@ +#include #include #include diff --git a/src/parse-decl.c b/src/parse-decl.c index dc187c0..0d26b9d 100644 --- a/src/parse-decl.c +++ b/src/parse-decl.c @@ -15,6 +15,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ +#include #include #include #include diff --git a/src/typemap.c b/src/typemap.c index cab18c8..b8965a1 100644 --- a/src/typemap.c +++ b/src/typemap.c @@ -15,6 +15,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ +#include #include #include #include "cdecl.h" -- 2.43.2