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.
diff --git a/Include/myselect.h b/Include/myselect.h
index 53ea5e5..1b3a834 100644
--- a/Include/myselect.h
+++ b/Include/myselect.h
@@ -41,14 +41,14 @@
 
 #ifdef HAVE_SYS_SELECT_H
 
-#include <sys/select.h>
-
 #ifdef SYS_SELECT_WITH_SYS_TIME
 #include "mytime.h"
 #else /* !SYS_SELECT_WITH_SYS_TIME */
 #include <time.h>
 #endif /* !SYS_SELECT_WITH_SYS_TIME */
 
+#include <sys/select.h>
+
 #else /* !HAVE_SYS_SELECT_H */
 
 #ifdef USE_GUSI