From 7d1cd6947d15f16a63b244a34ca7a28bef4a5214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 9 Mar 2002 12:10:54 +0000 Subject: Patch #504224: add plan9 threads include to thread.c. --- Python/thread.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Python/thread.c b/Python/thread.c index f9a4de9..1979df0 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -133,6 +133,10 @@ void PyThread_init_thread(void) #include "thread_wince.h" #endif +#ifdef PLAN9_THREADS +#include "thread_plan9.h" +#endif + /* #ifdef FOOBAR_THREADS #include "thread_foobar.h" -- cgit v0.12