diff options
Diffstat (limited to 'cpp/src/IcePack/Server.cpp')
-rw-r--r-- | cpp/src/IcePack/Server.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IcePack/Server.cpp b/cpp/src/IcePack/Server.cpp index cf0ae1db96e..703138f8dd8 100644 --- a/cpp/src/IcePack/Server.cpp +++ b/cpp/src/IcePack/Server.cpp @@ -11,7 +11,7 @@ #include <Ice/Application.h> #include <IcePack/AdminI.h> #include <IcePack/Forward.h> -#ifndef WIN32 +#ifndef _WIN32 # include <signal.h> # include <sys/wait.h> #endif @@ -28,7 +28,7 @@ public: virtual int run(int, char*[]); }; -#ifndef WIN32 +#ifndef _WIN32 static void childHandler(int) { @@ -39,7 +39,7 @@ childHandler(int) int main(int argc, char* argv[]) { -#ifndef WIN32 +#ifndef _WIN32 // // This application forks, so we need a signal handler for child // termination. |