From: Guido van Rossum Date: Mon, 2 Jun 1997 22:25:45 +0000 (+0000) Subject: Add default case (standard conformance) to avoid piling up X-Git-Tag: v1.5a3~378 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=46ff1903a3bdc34fd721380033fdf3209a3579b8;p=thirdparty%2FPython%2Fcpython.git Add default case (standard conformance) to avoid piling up system specific #ifdefs. --- diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index 8e6ca86ed926..5b70fa4e3cf6 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