We are making POSIX signal support a requirement.
[mmh] / uip / mhl.c
index e139a83..69797ad 100644 (file)
--- a/uip/mhl.c
+++ b/uip/mhl.c
@@ -1226,10 +1226,6 @@ putch(char ch)
 static void
 intrser(int i)
 {
-#ifndef RELIABLE_SIGNALS
-       SIGNAL(SIGINT, intrser);
-#endif
-
        discard(stdout);
        putchar('\n');
        longjmp(env, DONE);
@@ -1239,10 +1235,6 @@ intrser(int i)
 static void
 pipeser(int i)
 {
-#ifndef RELIABLE_SIGNALS
-       SIGNAL(SIGPIPE, pipeser);
-#endif
-
        done(NOTOK);
 }
 
@@ -1250,10 +1242,6 @@ pipeser(int i)
 static void
 quitser(int i)
 {
-#ifndef RELIABLE_SIGNALS
-       SIGNAL(SIGQUIT, quitser);
-#endif
-
        putchar('\n');
        fflush(stdout);
        done(NOTOK);