Add default case (standard conformance) to avoid piling up

system specific #ifdefs.
This commit is contained in:
Guido van Rossum 1997-06-02 22:25:45 +00:00
parent ec4f4ac8c0
commit 46ff1903a3

View file

@ -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