Commit 2a5d0ac5 authored by Ryan C. Gordon's avatar Ryan C. Gordon

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

 their proper headers included.

--HG--
branch : SDL-1.2
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402436
parent f5f620d1
...@@ -23,6 +23,11 @@ ...@@ -23,6 +23,11 @@
/* Allow access to a raw mixing buffer */ /* Allow access to a raw mixing buffer */
#ifdef HAVE_SIGNAL_H
#include <signal.h>
#endif
#include <unistd.h>
#include "SDL_timer.h" #include "SDL_timer.h"
#include "SDL_audio.h" #include "SDL_audio.h"
#include "../SDL_audiomem.h" #include "../SDL_audiomem.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment