From afe3420c9873bb1656cc523df5b835c0e18647f8 Mon Sep 17 00:00:00 2001 From: Patrice Mandin Date: Fri, 12 May 2006 16:25:04 +0000 Subject: [PATCH] Add missing include file --- src/thread/pth/SDL_systhread.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/thread/pth/SDL_systhread.c b/src/thread/pth/SDL_systhread.c index 45e6e806d..284003a63 100644 --- a/src/thread/pth/SDL_systhread.c +++ b/src/thread/pth/SDL_systhread.c @@ -27,12 +27,13 @@ * Patrice Mandin */ -#include "SDL_thread.h" -#include "../SDL_systhread.h" - #include #include +#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,