comparison src/audio/arts/SDL_artsaudio.c @ 4015:7e878cc4250a SDL-1.2

Fixed compiler warning (gcc w/ -Wall) for using getpid() and kill() without their proper headers included.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 08 Jul 2007 01:36:16 +0000
parents 33c248ea75f9
children a1b03ba2fcd0
comparison
equal deleted inserted replaced
4014:a6264945ac52 4015:7e878cc4250a
20 slouken@libsdl.org 20 slouken@libsdl.org
21 */ 21 */
22 #include "SDL_config.h" 22 #include "SDL_config.h"
23 23
24 /* Allow access to a raw mixing buffer */ 24 /* Allow access to a raw mixing buffer */
25
26 #ifdef HAVE_SIGNAL_H
27 #include <signal.h>
28 #endif
29 #include <unistd.h>
25 30
26 #include "SDL_timer.h" 31 #include "SDL_timer.h"
27 #include "SDL_audio.h" 32 #include "SDL_audio.h"
28 #include "../SDL_audiomem.h" 33 #include "../SDL_audiomem.h"
29 #include "../SDL_audio_c.h" 34 #include "../SDL_audio_c.h"