Commit 03dc5384 authored by Guido van Rossum's avatar Guido van Rossum

Move the #include of <sys/select> to *after* mytime.h (or <time.h>),

as this is the logical order of dependencies.  Suggested by Jeff Rush.
parent e8afe516
...@@ -41,14 +41,14 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -41,14 +41,14 @@ PERFORMANCE OF THIS SOFTWARE.
#ifdef HAVE_SYS_SELECT_H #ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#ifdef SYS_SELECT_WITH_SYS_TIME #ifdef SYS_SELECT_WITH_SYS_TIME
#include "mytime.h" #include "mytime.h"
#else /* !SYS_SELECT_WITH_SYS_TIME */ #else /* !SYS_SELECT_WITH_SYS_TIME */
#include <time.h> #include <time.h>
#endif /* !SYS_SELECT_WITH_SYS_TIME */ #endif /* !SYS_SELECT_WITH_SYS_TIME */
#include <sys/select.h>
#else /* !HAVE_SYS_SELECT_H */ #else /* !HAVE_SYS_SELECT_H */
#ifdef USE_GUSI #ifdef USE_GUSI
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment