From: Guido van Rossum Date: Mon, 28 Sep 1998 22:05:22 +0000 (+0000) Subject: Move the #include of to *after* mytime.h (or ), X-Git-Tag: v1.5.2a2~234 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=03dc5384d701ff378f1b9f934e6d8d3b3a8f570d;p=python Move the #include of to *after* mytime.h (or ), as this is the logical order of dependencies. Suggested by Jeff Rush. --- diff --git a/Include/myselect.h b/Include/myselect.h index 53ea5e5612..1b3a834873 100644 --- a/Include/myselect.h +++ b/Include/myselect.h @@ -41,14 +41,14 @@ PERFORMANCE OF THIS SOFTWARE. #ifdef HAVE_SYS_SELECT_H -#include - #ifdef SYS_SELECT_WITH_SYS_TIME #include "mytime.h" #else /* !SYS_SELECT_WITH_SYS_TIME */ #include #endif /* !SYS_SELECT_WITH_SYS_TIME */ +#include + #else /* !HAVE_SYS_SELECT_H */ #ifdef USE_GUSI