]> git.draconx.ca Git - liblbx.git/commitdiff
liblbx: Use unconditional includes of <config.h>.
authorNick Bowler <nbowler@draconx.ca>
Thu, 11 Feb 2010 03:14:13 +0000 (22:14 -0500)
committerNick Bowler <nbowler@draconx.ca>
Thu, 11 Feb 2010 04:46:58 +0000 (23:46 -0500)
src/image.c
src/lbx.c
src/misc.h

index a5a4bffcc2a4f9cf5956c4c4da719f46eac97b59..1525fb2d51fe684e170ea807c2dbd79148fde805 100644 (file)
  *  You should have received a copy of the GNU General Public License
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
-#ifdef HAVE_CONFIG_H
-#      include "config.h"
-#endif
-
+#include <config.h>
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
index 26a59bd66604141855773c4f7b80772d4c6ba045..720cf077881dc6861473b7438de0659cfaf7b09c 100644 (file)
--- a/src/lbx.c
+++ b/src/lbx.c
  *  You should have received a copy of the GNU General Public License
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
-#ifdef HAVE_CONFIG_H
-#      include "config.h"
-#endif
-
+#include <config.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 839908e3e81d3f124c6d087b7a19ab4c1786c2f0..e8ba4475142dca6bf36fe53b2ac1ab134fef98a6 100644 (file)
@@ -1,10 +1,6 @@
 #ifndef LBX_MISC_H_
 #define LBX_MISC_H_
 
-#ifdef HAVE_CONFIG_H
-#      include "config.h"
-#endif
-
 #include <stdio.h>
 
 #define MIN(a,b) (((a)<(b))?(a):(b))