char *map_name(char *);
#ifdef POP
-void done(int);
+int done(int);
static int pop_action(char *);
static int pop_pack(char *);
static int map_count(void);
seq_setunseen (mp, 0); /* set the Unseen-Sequence */
seq_save (mp); /* synchronize sequences */
context_save (); /* save the context file */
- done (0);
+ return done (0);
}
#ifdef POP
-void
+int
done (int status)
{
if (packfile && pd != NOTOK)
mbx_close (packfile, pd);
exit (status);
+ return 1; /* dead code to satisfy the compiler */
}
static int
{
fprintf (pf, "%s\n", s);
stop += strlen (s) + 1;
+ return 0; /* Is return value used? This was missing before 1999-07-15. */
}
static int
continue;
fputs (buffer, pf);
size += strlen (buffer) + 1;
+ return 0; /* Is return value used? This was missing before 1999-07-15. */
}
static int