diff options
author | Eli Zaretskii <eliz@gnu.org> | 2014-06-04 00:00:40 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2014-06-04 00:00:40 +0300 |
commit | 71b2605c959c8ccc6eb54ae147f98105dce369cb (patch) | |
tree | 0ea6c9b99f693193b15158b683b0cdbd13fa716e /src/sysselect.h | |
parent | 86caa902c4beba4856d289503ed6cb131136569b (diff) | |
download | emacs-71b2605c959c8ccc6eb54ae147f98105dce369cb.tar.gz emacs-71b2605c959c8ccc6eb54ae147f98105dce369cb.tar.bz2 emacs-71b2605c959c8ccc6eb54ae147f98105dce369cb.zip |
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.
Diffstat (limited to 'src/sysselect.h')
-rw-r--r-- | src/sysselect.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sysselect.h b/src/sysselect.h index 9ecc96e310c..db6438ed1f8 100644 --- a/src/sysselect.h +++ b/src/sysselect.h @@ -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 |