comparison decoders/mp3.c @ 106:40de367eb59e

Changing my include structure to do this right.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 03 Oct 2001 18:29:32 +0000
parents 103cfcb3c014
children 1df5c106504e
comparison
equal deleted inserted replaced
105:de42ca5599ac 106:40de367eb59e
27 * Please see the file LICENSE in the source's root directory. 27 * Please see the file LICENSE in the source's root directory.
28 * 28 *
29 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) 29 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org)
30 */ 30 */
31 31
32 #include "SDL_sound.h" 32 #if HAVE_CONFIG_H
33 33 # include <config.h>
34 #define __SDL_SOUND_INTERNAL__ 34 #endif
35 #include "SDL_sound_internal.h"
36 35
37 #ifdef SOUND_SUPPORTS_MP3 36 #ifdef SOUND_SUPPORTS_MP3
38 37
39 #include <stdio.h> 38 #include <stdio.h>
40 #include <stdlib.h> 39 #include <stdlib.h>
41 #include <string.h> 40 #include <string.h>
42 #include <assert.h> 41 #include <assert.h>
42
43 #include "SDL_sound.h"
44
45 #define __SDL_SOUND_INTERNAL__
46 #include "SDL_sound_internal.h"
43 47
44 #include "smpeg.h" 48 #include "smpeg.h"
45 #include "extra_rwops.h" 49 #include "extra_rwops.h"
46 50
47 51