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/init.cpp | |
parent | e3d5140dcc936ff411c438b7e3997104cb5f085a (diff) |
Fix Windows
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 45262c1dd..b1001904c 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -20,11 +20,12 @@ #include "socketengine.h" #include "servers.h" +#ifndef _WIN32 #include <sys/types.h> #include <sys/wait.h> #include <sys/stat.h> -#include <unistd.h> #include <grp.h> +#endif Anope::string conf_dir = "conf", db_dir = "data", modules_dir = "lib", locale_dir = "locale", log_dir = "logs"; |