X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Frcvtty.c;h=048407a17869c11d92df61c661916e9caf57881e;hb=3bebe0e894828d80183926d4fc19fc01cd3c274e;hp=f61f0b983192a899db91e3ffd86f21b78e0bbdc9;hpb=88b27ae07f694e90637c2a852b754539c2f70172;p=mmh diff --git a/uip/rcvtty.c b/uip/rcvtty.c index f61f0b9..048407a 100644 --- a/uip/rcvtty.c +++ b/uip/rcvtty.c @@ -14,7 +14,7 @@ #include #include -#include +#include #include #include #include @@ -198,7 +198,7 @@ message_fd (char **vec) return header_fd (); } else if (child_id) { /* parent process */ - if (!m_setjmp (myctx)) { + if (!setjmp (myctx)) { SIGNAL (SIGALRM, alrmser); bytes = fstat(fileno (stdin), &st) != NOTOK ? (int) st.st_size : 100; @@ -284,7 +284,7 @@ alert (char *tty, int md) if (stat (ttyspec, &st) == NOTOK || (st.st_mode & mask) == 0) return; - if (!m_setjmp (myctx)) { + if (!setjmp (myctx)) { SIGNAL (SIGALRM, alrmser); alarm (2); td = open (ttyspec, O_WRONLY);