comparison src/audio/esd/SDL_esdaudio.c @ 1367:e440d5c488c1

Fixes for BeOS and Solaris builds
author Sam Lantinga <slouken@libsdl.org>
date Fri, 17 Feb 2006 08:43:23 +0000
parents 19418e4422cb
children c0a74f199ecf
comparison
equal deleted inserted replaced
1366:34d9df784d84 1367:e440d5c488c1
20 slouken@libsdl.org 20 slouken@libsdl.org
21 */ 21 */
22 22
23 /* Allow access to an ESD network stream mixing buffer */ 23 /* Allow access to an ESD network stream mixing buffer */
24 24
25 #ifdef ESD_SUPPORT
26
27 #include <errno.h> 25 #include <errno.h>
28
29 #include <esd.h> 26 #include <esd.h>
30 27
31 #include "SDL_timer.h" 28 #include "SDL_timer.h"
32 #include "SDL_audio.h" 29 #include "SDL_audio.h"
33 #include "../SDL_audiomem.h" 30 #include "../SDL_audiomem.h"
318 parent = getpid(); 315 parent = getpid();
319 316
320 /* We're ready to rock and roll. :-) */ 317 /* We're ready to rock and roll. :-) */
321 return(0); 318 return(0);
322 } 319 }
323
324 #endif /* ESD_SUPPORT */