From: Nick Bowler Date: Thu, 11 Feb 2010 03:14:13 +0000 (-0500) Subject: liblbx: Use unconditional includes of . X-Git-Url: http://git.draconx.ca/gitweb/liblbx.git/commitdiff_plain/256cc05240e58eb10bb4ffd44e942ed28f00c27e liblbx: Use unconditional includes of . --- diff --git a/src/image.c b/src/image.c index a5a4bff..1525fb2 100644 --- a/src/image.c +++ b/src/image.c @@ -16,10 +16,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - +#include #include #include #include diff --git a/src/lbx.c b/src/lbx.c index 26a59bd..720cf07 100644 --- a/src/lbx.c +++ b/src/lbx.c @@ -16,10 +16,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - +#include #include #include #include diff --git a/src/misc.h b/src/misc.h index 839908e..e8ba447 100644 --- a/src/misc.h +++ b/src/misc.h @@ -1,10 +1,6 @@ #ifndef LBX_MISC_H_ #define LBX_MISC_H_ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - #include #define MIN(a,b) (((a)<(b))?(a):(b))