diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-08-03 14:23:46 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-08-03 14:23:46 +0000 |
commit | 4c22e67ec95fd5fb54dbd758325f562831e7d19d (patch) | |
tree | fbaccafaf8e8564a88098530cc9695c0344ec9de /rts/win32 | |
parent | 4e9243aa352ff42301b3abfb8a975d2c9e8de949 (diff) | |
download | haskell-4c22e67ec95fd5fb54dbd758325f562831e7d19d.tar.gz |
Windows build fixes
Diffstat (limited to 'rts/win32')
-rw-r--r-- | rts/win32/OSThreads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/win32/OSThreads.c b/rts/win32/OSThreads.c index c18bab2d09..410346916b 100644 --- a/rts/win32/OSThreads.c +++ b/rts/win32/OSThreads.c @@ -11,7 +11,6 @@ #include "Rts.h" #if defined(THREADED_RTS) -#include "OSThreads.h" #include "RtsUtils.h" #include <windows.h> @@ -95,6 +94,7 @@ void shutdownThread() { _endthreadex(0); + barf("_endthreadex returned"); // avoid gcc warning } int |