From 4b6420b8a4323990ca6036313ad0e68ad85b1b36 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 --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401787 --- 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,