diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-09-14 09:29:44 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-09-14 09:29:44 +0000 |
commit | 011ba96d5326c78f124da0373a3d27eb1f674ff5 (patch) | |
tree | 251e209e0a82af209fdfe8791ef1a9d6a8d27124 /src/httrack.c | |
parent | d7cc6f5b55a0d005ffc669810f7671002c5d63dc (diff) |
Removed dead code (_WIN32_WCE)
Diffstat (limited to 'src/httrack.c')
-rw-r--r-- | src/httrack.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/httrack.c b/src/httrack.c index 4832d77..f60b898 100644 --- a/src/httrack.c +++ b/src/httrack.c @@ -876,14 +876,12 @@ static void sig_leave(int code) { static void signal_handlers(void) { #ifdef _WIN32 -#ifndef _WIN32_WCE #if 0 /* BUG366763 */ signal(SIGINT, sig_ask); // ^C #else signal(SIGINT, sig_leave); // ^C #endif signal(SIGTERM, sig_finish); // kill <process> -#endif #else #if 0 /* BUG366763 */ signal(SIGHUP, sig_back); // close window |