From: Nick Bowler Date: Wed, 21 Sep 2011 23:13:50 +0000 (-0400) Subject: Include config.h in all C source files. X-Git-Tag: v1~102 X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/commitdiff_plain/cbf38d096b4ea7ef309efedadf6abcf6f09de7d3 Include config.h in all C source files. Some source files failed to include config.h, which is needed for some things to work. --- 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"