Fixed compiler warning (gcc w/ -Wall) for using getpid() and kill() without

their proper headers included.

--HG--
branch : SDL-1.2
This commit is contained in:
Ryan C. Gordon 2007-07-08 01:36:16 +00:00
parent b3d0bc9780
commit 3859229030

View File

@ -23,6 +23,11 @@
/* Allow access to a raw mixing buffer */
#ifdef HAVE_SIGNAL_H
#include <signal.h>
#endif
#include <unistd.h>
#include "SDL_timer.h"
#include "SDL_audio.h"
#include "../SDL_audiomem.h"