X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmshcmds.c;h=9937a1dd31b73726ad5d58dacc15beb8c47325d1;hb=bc7839e29d6a4906bd0b8909fd12bb01933b143c;hp=64957e8e1f85cca7222396f522949e620895cf79;hpb=c2191f6961409263271aaeb0f9685e10492389a8;p=mmh diff --git a/uip/mshcmds.c b/uip/mshcmds.c index 64957e8..9937a1d 100644 --- a/uip/mshcmds.c +++ b/uip/mshcmds.c @@ -15,7 +15,6 @@ #include #include #include -#include #include #include #include @@ -34,13 +33,6 @@ static FILE *mhlfp; typedef int (*qsort_comp) (const void *, const void *); /* - * prototypes - */ -void clear_screen (void); /* from termsbr.c */ -int SOprintf (char *, ...); /* from termsbr.c */ -int sc_width (void); /* from termsbr.c */ - -/* * static prototypes */ static int burst (struct Msg *, int, int, int, int); @@ -59,9 +51,6 @@ static int process (int, char *, int, char **); static void copy_message (int, FILE *); static void copy_digest (int, FILE *); -/* from mhlsbr.c */ -int mhlsbr (int, char **, FILE *(*)()); - void forkcmd (char **args, char *pgm) { @@ -1086,6 +1075,8 @@ static char *hlpmsg[] = { void helpcmd (char **args) { + NMH_UNUSED (args); + int i; for (i = 0; hlpmsg[i]; i++) { @@ -1124,7 +1115,8 @@ void markcmd (char **args) { int addsw = 0, deletesw = 0, debugsw = 0; - int listsw = 0, zerosw = 0, seqp = 0; + int listsw = 0, zerosw = 0; + size_t seqp = 0; int msgp = 0, msgnum; char *cp, buf[BUFSIZ]; char *seqs[NUMATTRS + 1], *msgs[MAXARGS]; @@ -1633,7 +1625,8 @@ static struct swit pickswit[] = { void pickcmd (char **args) { - int zerosw = 1, msgp = 0, seqp = 0; + int zerosw = 1, msgp = 0; + size_t seqp = 0; int vecp = 0, hi, lo, msgnum; char *cp, buf[BUFSIZ], *msgs[MAXARGS]; char *seqs[NUMATTRS], *vec[MAXARGS]; @@ -2366,6 +2359,8 @@ show (int msgnum) static int eom_action (int c) { + NMH_UNUSED (c); + return (ftell (mhlfp) >= Msgs[mhlnum].m_stop); }