diff options
author | Erik de Castro Lopo <erikd@miles> | 2005-10-13 09:22:16 +0000 |
---|---|---|
committer | Erik de Castro Lopo <erikd@miles> | 2005-10-13 09:22:16 +0000 |
commit | 6740909a31c57d77dbb5b06a8bb0544b04f130da (patch) | |
tree | a1a94a9530cfee5a2b1c4afe421b5834e765236b | |
parent | 979f8d10732edcad95c99cba0d54e36f7ad81e52 (diff) |
Ensure sfconfig.h is included before any other header file.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/caf.c | 3 | ||||
-rw-r--r-- | src/command.c | 3 | ||||
-rw-r--r-- | src/dither.c | 3 | ||||
-rw-r--r-- | src/double64.c | 2 | ||||
-rw-r--r-- | src/dwd.c | 3 | ||||
-rw-r--r-- | src/dwvw.c | 3 | ||||
-rw-r--r-- | src/flac.c | 3 | ||||
-rw-r--r-- | src/float32.c | 3 | ||||
-rw-r--r-- | src/htk.c | 3 | ||||
-rw-r--r-- | src/ima_adpcm.c | 3 | ||||
-rw-r--r-- | src/interleave.c | 6 | ||||
-rw-r--r-- | src/ircam.c | 3 | ||||
-rw-r--r-- | src/mat4.c | 3 | ||||
-rw-r--r-- | src/mat5.c | 3 | ||||
-rw-r--r-- | src/ms_adpcm.c | 3 | ||||
-rw-r--r-- | src/new.c | 3 | ||||
-rw-r--r-- | src/nist.c | 3 | ||||
-rw-r--r-- | src/ogg.c | 3 | ||||
-rw-r--r-- | src/pcm.c | 3 | ||||
-rw-r--r-- | src/pvf.c | 3 | ||||
-rw-r--r-- | src/raw.c | 3 | ||||
-rw-r--r-- | src/rx2.c | 3 | ||||
-rw-r--r-- | src/sd2.c | 3 | ||||
-rw-r--r-- | src/strings.c | 3 | ||||
-rw-r--r-- | src/txw.c | 3 | ||||
-rw-r--r-- | src/vox_adpcm.c | 3 | ||||
-rw-r--r-- | src/w64.c | 3 | ||||
-rw-r--r-- | src/wav.c | 2 | ||||
-rw-r--r-- | src/wav_w64.c | 3 | ||||
-rw-r--r-- | src/wve.c | 3 |
31 files changed, 64 insertions, 32 deletions
@@ -1,3 +1,8 @@ +2005-10-13 Erik de Castro Lopo <erikd AT mega-nerd DOT com> + + * src/*.c + Ensure sfconfig.h is included before any other header file. + 2005-10-07 Erik de Castro Lopo <erikd AT mega-nerd DOT com> * configure.ac @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "float_cast.h" #include "common.h" diff --git a/src/command.c b/src/command.c index aeec8cb..861d159 100644 --- a/src/command.c +++ b/src/command.c @@ -16,12 +16,13 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <string.h> #include <math.h> #include "sndfile.h" -#include "sfconfig.h" #include "common.h" static SF_FORMAT_INFO const simple_formats [] = diff --git a/src/dither.c b/src/dither.c index 5fc1485..873f1bb 100644 --- a/src/dither.c +++ b/src/dither.c @@ -16,10 +16,11 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdlib.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" diff --git a/src/double64.c b/src/double64.c index 17c0459..9a6f8f1 100644 --- a/src/double64.c +++ b/src/double64.c @@ -16,13 +16,13 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" #include "float_cast.h" @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" @@ -26,12 +26,13 @@ ** Lidstrom and is copyright 1993 by NuEdge Development". */ +#include "sfconfig.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "float_cast.h" #include "common.h" @@ -17,6 +17,8 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <stdlib.h> #include <fcntl.h> @@ -24,7 +26,6 @@ #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "common.h" diff --git a/src/float32.c b/src/float32.c index 00daac7..b376e60 100644 --- a/src/float32.c +++ b/src/float32.c @@ -16,12 +16,13 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" #include "float_cast.h" @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" diff --git a/src/ima_adpcm.c b/src/ima_adpcm.c index 5a5bfe7..7ca01ef 100644 --- a/src/ima_adpcm.c +++ b/src/ima_adpcm.c @@ -16,12 +16,13 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "float_cast.h" #include "common.h" diff --git a/src/interleave.c b/src/interleave.c index fe085a6..7c18bd4 100644 --- a/src/interleave.c +++ b/src/interleave.c @@ -16,11 +16,11 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include <stdlib.h> +#include "sfendian.h" + +#include <stdlib.h> #include "sndfile.h" -#include "sfconfig.h" -#include "sfendian.h" #include "common.h" #define INTERLEAVE_CHANNELS 6 diff --git a/src/ircam.c b/src/ircam.c index b4d339d..48a95c3 100644 --- a/src/ircam.c +++ b/src/ircam.c @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" #include "float_cast.h" @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" #include "float_cast.h" diff --git a/src/ms_adpcm.c b/src/ms_adpcm.c index 4f3011e..8833696 100644 --- a/src/ms_adpcm.c +++ b/src/ms_adpcm.c @@ -16,12 +16,13 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "float_cast.h" #include "common.h" @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" @@ -23,13 +23,14 @@ ** However, no code from that package was used. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" @@ -16,8 +16,9 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "sndfile.h" #include "sfconfig.h" + +#include "sndfile.h" #include "sfendian.h" #include "float_cast.h" #include "common.h" @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" @@ -16,10 +16,11 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include "sndfile.h" -#include "sfconfig.h" #include "common.h" /*------------------------------------------------------------------------------ @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <string.h> #include <ctype.h> #include <stdarg.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" @@ -27,13 +27,14 @@ ** http://developer.apple.com/documentation/mac/MoreToolbox/MoreToolbox-99.html */ +#include "sfconfig.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" diff --git a/src/strings.c b/src/strings.c index 1782050..4a08fdd 100644 --- a/src/strings.c +++ b/src/strings.c @@ -16,12 +16,13 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <string.h> #include <math.h> #include "sndfile.h" -#include "sfconfig.h" #include "common.h" #define STRINGS_DEBUG 0 @@ -23,13 +23,14 @@ ** and trial and error experimentation. The code here however is all original. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" diff --git a/src/vox_adpcm.c b/src/vox_adpcm.c index caec6b9..f743a72 100644 --- a/src/vox_adpcm.c +++ b/src/vox_adpcm.c @@ -29,12 +29,13 @@ ** http://ibiblio.org/pub/linux/apps/sound/convert/vox.tar.gz */ +#include "sfconfig.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "float_cast.h" #include "common.h" @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <string.h> #include <ctype.h> #include <time.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" #include "wav_w64.h" @@ -17,6 +17,7 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" #include <stdio.h> #include <stdlib.h> @@ -25,7 +26,6 @@ #include <time.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" #include "wav_w64.h" diff --git a/src/wav_w64.c b/src/wav_w64.c index 0f0fb97..5415a47 100644 --- a/src/wav_w64.c +++ b/src/wav_w64.c @@ -17,13 +17,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <string.h> #include <ctype.h> #include <time.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" #include "wav_w64.h" @@ -16,13 +16,14 @@ ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "sfconfig.h" + #include <stdio.h> #include <fcntl.h> #include <string.h> #include <ctype.h> #include "sndfile.h" -#include "sfconfig.h" #include "sfendian.h" #include "common.h" |