comparison SDL_sound_internal.h @ 401:c42ac9ee2ce4

Fixed "inline" keyword to compile.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 12 Jul 2002 23:16:24 +0000
parents fb519e6028e3
children 5b00e43ec23c
comparison
equal deleted inserted replaced
400:9d0b5ec9cc26 401:c42ac9ee2ce4
33 #error Do not include this header from your applications. 33 #error Do not include this header from your applications.
34 #endif 34 #endif
35 35
36 #include "SDL.h" 36 #include "SDL.h"
37 37
38 #if (defined(_MSC_VER) && !defined(inline)) 38 /* SDL 1.2.4 defines this, but better safe than sorry. */
39 # define inline __inline__ 39 #if (!defined(__inline__))
40 # define __inline__
40 #endif 41 #endif
41 42
42 #if (defined DEBUG_CHATTER) 43 #if (defined DEBUG_CHATTER)
43 #define SNDDBG(x) printf x 44 #define SNDDBG(x) printf x
44 #else 45 #else