diff options
author | Daniel Spangberg <daniels@kemi.uu.se> | 2013-05-15 18:09:13 (GMT) |
---|---|---|
committer | Daniel Spangberg <daniels@kemi.uu.se> | 2013-05-15 18:09:13 (GMT) |
commit | e8635a69ce079f76f0d4b58281affbb8d36bf1b7 (patch) | |
tree | 46485c14c3e8d892708a695b00be11cbc129d672 | |
parent | 68018a795477825bb1e4b6d10902891cf9577ed9 (diff) |
Cleanup: Remove old remains of autoconf in the compression code.
-rw-r--r-- | include/compression/fixpoint.h | 4 | ||||
-rw-r--r-- | include/compression/warnmalloc.h | 4 | ||||
-rw-r--r-- | src/compression/bwlzh.c | 4 | ||||
-rw-r--r-- | src/compression/coder.c | 4 | ||||
-rw-r--r-- | src/compression/fixpoint.c | 4 | ||||
-rw-r--r-- | src/compression/warnmalloc.c | 5 | ||||
-rw-r--r-- | src/compression/widemuldiv.c | 5 | ||||
-rw-r--r-- | src/compression/xtc2.c | 4 | ||||
-rw-r--r-- | src/compression/xtc3.c | 3 |
9 files changed, 0 insertions, 37 deletions
diff --git a/include/compression/fixpoint.h b/include/compression/fixpoint.h index d20d5e1..2022e43 100644 --- a/include/compression/fixpoint.h +++ b/include/compression/fixpoint.h @@ -13,10 +13,6 @@ #ifndef FIXPOINT_H #define FIXPOINT_H -#if HAVE_CONFIG_H -#include <config.h> -#endif - #include "my64bit.h" /* There are at least 32 bits available in a long. */ diff --git a/include/compression/warnmalloc.h b/include/compression/warnmalloc.h index c2eb28d..4db41b2 100644 --- a/include/compression/warnmalloc.h +++ b/include/compression/warnmalloc.h @@ -14,10 +14,6 @@ #ifndef WARNMALLOC_H #define WARNMALLOC_H -#if HAVE_CONFIG_H -#include <config.h> -#endif - #include "tng_compress.h" void DECLSPECDLLEXPORT *Ptngc_warnmalloc_x(size_t size, char *file, int line); diff --git a/src/compression/bwlzh.c b/src/compression/bwlzh.c index b5590e3..62a5939 100644 --- a/src/compression/bwlzh.c +++ b/src/compression/bwlzh.c @@ -11,10 +11,6 @@ */ -#if HAVE_CONFIG_H -#include <config.h> -#endif - #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/src/compression/coder.c b/src/compression/coder.c index bed73ca..a64e741 100644 --- a/src/compression/coder.c +++ b/src/compression/coder.c @@ -11,10 +11,6 @@ */ -#if HAVE_CONFIG_H -#include <config.h> -#endif - #include <stdio.h> #include <stdlib.h> #include "tng_compress.h" diff --git a/src/compression/fixpoint.c b/src/compression/fixpoint.c index 098b537..04a579c 100644 --- a/src/compression/fixpoint.c +++ b/src/compression/fixpoint.c @@ -10,10 +10,6 @@ * of the License, or (at your option) any later version. */ -#if HAVE_CONFIG_H -#include <config.h> -#endif - #include <stdio.h> #include <math.h> #include "fixpoint.h" diff --git a/src/compression/warnmalloc.c b/src/compression/warnmalloc.c index e4d49f8..cdce251 100644 --- a/src/compression/warnmalloc.c +++ b/src/compression/warnmalloc.c @@ -11,11 +11,6 @@ */ -#if HAVE_CONFIG_H -#include <config.h> -#endif - - #include <stdio.h> #include <stdlib.h> #include "tng_compress.h" diff --git a/src/compression/widemuldiv.c b/src/compression/widemuldiv.c index 98d47cd..e2955a8 100644 --- a/src/compression/widemuldiv.c +++ b/src/compression/widemuldiv.c @@ -11,11 +11,6 @@ */ -#if HAVE_CONFIG_H -#include <config.h> -#endif - - #include <stdio.h> #include <stdlib.h> diff --git a/src/compression/xtc2.c b/src/compression/xtc2.c index 74b55ad..76f6264 100644 --- a/src/compression/xtc2.c +++ b/src/compression/xtc2.c @@ -17,10 +17,6 @@ (c) Copyright (c) Erik Lindahl, David van der Spoel */ -#if HAVE_CONFIG_H -#include <config.h> -#endif - #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/src/compression/xtc3.c b/src/compression/xtc3.c index 420c607..8c742a2 100644 --- a/src/compression/xtc3.c +++ b/src/compression/xtc3.c @@ -20,9 +20,6 @@ /* The cost estimates are ripped right out of xtc2.c, so take these with a grain (truckload) of salt. */ -#if HAVE_CONFIG_H -#include <config.h> -#endif #include <limits.h> #include <stdio.h> #include <stdlib.h> |