diff options
author | Adam <Adam@anope.org> | 2012-09-02 08:30:54 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-09-02 08:30:54 -0400 |
commit | 1af64a9bbb150b9daae3944d6aae86864c271103 (patch) | |
tree | c24a1ac6793e997f83ac66810b611f88855fcd90 /src/main.cpp | |
parent | e3d5140dcc936ff411c438b7e3997104cb5f085a (diff) |
Fix Windows
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index e3fcb8bb2..cdddc3163 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -35,8 +35,11 @@ #include "signals.h" #include "socketengine.h" -#include <unistd.h> +#ifndef _WIN32 #include <limits.h> +#else +#include <process.h> +#endif /******** Global variables! ********/ |