Mercurial > sdl-ios-xcode
changeset 1826:cf7528eded83
Add missing include file
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Fri, 12 May 2006 16:25:04 +0000 |
parents | f255c6bee184 |
children | b7e15d9bf1cb |
files | src/thread/pth/SDL_systhread.c |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/thread/pth/SDL_systhread.c Fri May 12 16:24:30 2006 +0000 +++ b/src/thread/pth/SDL_systhread.c Fri May 12 16:25:04 2006 +0000 @@ -27,12 +27,13 @@ * Patrice Mandin */ -#include "SDL_thread.h" -#include "../SDL_systhread.h" - #include <pth.h> #include <signal.h> +#include "SDL_thread.h" +#include "../SDL_thread_c.h" +#include "../SDL_systhread.h" + /* List of signals to mask in the subthreads */ static int sig_list[] = { SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGALRM, SIGTERM, SIGCHLD, SIGWINCH,