X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmsh.c;h=43530db3946bcfbc23937d5c395d294a25455732;hb=9ac724c1df34e9dd56e2e35566b0cf81a491e8e6;hp=3a5cc976a49e8ae8c787ec1df0a6739207d0054e;hpb=c2191f6961409263271aaeb0f9685e10492389a8;p=mmh diff --git a/uip/msh.c b/uip/msh.c index 3a5cc97..43530db 100644 --- a/uip/msh.c +++ b/uip/msh.c @@ -25,7 +25,7 @@ #include #include -#include +#include #include #include #include @@ -805,6 +805,7 @@ m_gMsgs (int n) FILE * msh_ready (int msgnum, int full) { + NMH_UNUSED (full); register int msgp; int fd; char *cp; @@ -1582,6 +1583,7 @@ seq_setcur (struct msgs *mp, int msgnum) static void intrser (int i) { + NMH_UNUSED (i); discard (stdout); interrupted++; } @@ -1590,6 +1592,7 @@ intrser (int i) static void pipeser (int i) { + NMH_UNUSED (i); if (broken_pipe++ == 0) fprintf (stderr, "broken pipe\n"); told_to_quit++; @@ -1600,6 +1603,7 @@ pipeser (int i) static void quitser (int i) { + NMH_UNUSED (i); told_to_quit++; interrupted++; } @@ -1608,6 +1612,7 @@ quitser (int i) static void alrmser (int i) { + NMH_UNUSED (i); longjmp (peerenv, DONE); } @@ -1672,6 +1677,7 @@ pINI (void) static int pQRY (char *str, int scansw) { + NMH_UNUSED (str); if (pQRY1 (scansw) == NOTOK || pQRY2 () == NOTOK) return NOTOK; @@ -1913,7 +1919,7 @@ pFIN (void) { int status; - switch (setjmp (peerenv)) { + switch (m_setjmp (peerenv)) { case OK: SIGNAL (SIGALRM, alrmser); alarm (ALARM);