Commit 7d75eb7f208c77a026f8a978a356f4a37096768a
1 parent
c677702e
Exists in
master
and in
1 other branch
Fixing windows build.
Showing
1 changed file
with
4 additions
and
1 deletions
Show diff stats
client/src/session/local/wait.cc
... | ... | @@ -39,7 +39,10 @@ |
39 | 39 | #include "private.h" |
40 | 40 | #include <lib3270/actions.h> |
41 | 41 | #include <signal.h> |
42 | - #include <unistd.h> | |
42 | + | |
43 | +#ifndef _WIN32 | |
44 | + #include <unistd.h> | |
45 | +#endif // _WIN32 | |
43 | 46 | |
44 | 47 | /*---[ Implement ]----------------------------------------------------------------------------------*/ |
45 | 48 | ... | ... |