From 46ff1903a3bdc34fd721380033fdf3209a3579b8 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 2 Jun 1997 22:25:45 +0000 Subject: Add default case (standard conformance) to avoid piling up system specific #ifdefs. --- Python/thread_pthread.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index 8e6ca86..5b70fa4 100644 --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -66,12 +66,12 @@ PERFORMANCE OF THIS SOFTWARE. # define PY_PTHREAD_D7 # endif -#elif defined(__unix) && defined(__sparc) -# define PY_PTHREAD_STD -#elif defined(__linux) -# define PY_PTHREAD_STD #elif defined(__DGUX) # define PY_PTHREAD_D6 + +#else /* Default case */ +# define PY_PTHREAD_STD + #endif -- cgit v0.12