diff options
| author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2014-01-26 10:59:33 -0800 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2014-01-26 10:59:33 -0800 |
| commit | 80997f652b2c2cbca615174f9b2dd09411d723a9 (patch) | |
| tree | ae7f04ae3f787fd2e62ff9b81a72c8fd15d9d492 /node | |
| parent | 9d67a02b5f691583220ab858cd2c6a92079e107f (diff) | |
| download | infinitytier-80997f652b2c2cbca615174f9b2dd09411d723a9.tar.gz infinitytier-80997f652b2c2cbca615174f9b2dd09411d723a9.zip | |
Few small cleanup things...
Diffstat (limited to 'node')
| -rw-r--r-- | node/Node.cpp | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/node/Node.cpp b/node/Node.cpp index 25c08067..71f3e087 100644 --- a/node/Node.cpp +++ b/node/Node.cpp @@ -47,6 +47,13 @@ #include <ShlObj.h> #endif +#ifdef __UNIX_LIKE__ +#include <fcntl.h> +#include <unistd.h> +#include <signal.h> +#include <sys/file.h> +#endif + #include "Condition.hpp" #include "Node.hpp" #include "Topology.hpp" @@ -71,15 +78,6 @@ #include "Service.hpp" #include "SoftwareUpdater.hpp" -#ifdef __WINDOWS__ -#include <Windows.h> -#else -#include <fcntl.h> -#include <unistd.h> -#include <signal.h> -#include <sys/file.h> -#endif - #include "../version.h" namespace ZeroTier { |
