Skip to content

Commit 03dc538

Browse files
committed
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.
1 parent e8afe51 commit 03dc538

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Include/myselect.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ PERFORMANCE OF THIS SOFTWARE.
4141

4242
#ifdef HAVE_SYS_SELECT_H
4343

44-
#include <sys/select.h>
45-
4644
#ifdef SYS_SELECT_WITH_SYS_TIME
4745
#include "mytime.h"
4846
#else /* !SYS_SELECT_WITH_SYS_TIME */
4947
#include <time.h>
5048
#endif /* !SYS_SELECT_WITH_SYS_TIME */
5149

50+
#include <sys/select.h>
51+
5252
#else /* !HAVE_SYS_SELECT_H */
5353

5454
#ifdef USE_GUSI

0 commit comments

Comments
 (0)