diff options
| author | Eli Zaretskii | 2014-06-04 00:00:40 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 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.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; | |||
| 51 | #define pselect sys_select | 51 | #define pselect sys_select |
| 52 | #endif | 52 | #endif |
| 53 | 53 | ||
| 54 | #ifndef WINDOWSNT | ||
| 54 | INLINE_HEADER_BEGIN | 55 | INLINE_HEADER_BEGIN |
| 55 | 56 | ||
| 56 | /* Check for out-of-range errors if ENABLE_CHECKING is defined. */ | 57 | /* Check for out-of-range errors if ENABLE_CHECKING is defined. */ |
| @@ -85,4 +86,6 @@ fd_SET (int fd, fd_set *set) | |||
| 85 | 86 | ||
| 86 | INLINE_HEADER_END | 87 | INLINE_HEADER_END |
| 87 | 88 | ||
| 89 | #endif /* !WINDOWSNT */ | ||
| 90 | |||
| 88 | #endif | 91 | #endif |