# HG changeset patch # User Patrice Mandin # Date 1147451104 0 # Node ID cf7528eded835c376c3e887314c4e0a97ef4f792 # Parent f255c6bee184192c2b11d987421eb23457fa8ab4 Add missing include file diff -r f255c6bee184 -r cf7528eded83 src/thread/pth/SDL_systhread.c --- 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 #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,