Fix the MS-Windows build broken by few last commits.
src/sysselect.h (fd_CLR, fd_ISSET, fd_SET, FD_CLR, FD_ISSET) (FD_SET): Don't define on WINDOWSNT.
This commit is contained in:
parent
86caa902c4
commit
71b2605c95
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-06-03 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* sysselect.h (fd_CLR, fd_ISSET, fd_SET, FD_CLR, FD_ISSET)
|
||||
(FD_SET): Don't define on WINDOWSNT.
|
||||
|
||||
2014-06-03 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* emacs.c: Include "sysselect.h", to define its inline functions.
|
||||
|
|
|
@ -51,6 +51,7 @@ typedef int fd_set;
|
|||
#define pselect sys_select
|
||||
#endif
|
||||
|
||||
#ifndef WINDOWSNT
|
||||
INLINE_HEADER_BEGIN
|
||||
|
||||
/* Check for out-of-range errors if ENABLE_CHECKING is defined. */
|
||||
|
@ -85,4 +86,6 @@ fd_SET (int fd, fd_set *set)
|
|||
|
||||
INLINE_HEADER_END
|
||||
|
||||
#endif /* !WINDOWSNT */
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue