]> diplodocus.org Git - nmh/blobdiff - uip/packf.c
Added '-L' to the calls of 'ls' in configure.in -- I have seen multiple machines
[nmh] / uip / packf.c
index ec2f975a62eb20531dc45831e12cd086197dcc71..a607da81453c125954d48780cf4cf5d425b498ef 100644 (file)
@@ -197,12 +197,13 @@ main (int argc, char **argv)
     seq_save (mp);
     context_save ();                   /* save the context file         */
     folder_free (mp);                  /* free folder/message structure */
-    done (0);
+    return done (0);
 }
 
-void
+int
 done (int status)
 {
     mbx_close (file, md);
     exit (status);
+    return 1;  /* dead code to satisfy the compiler */
 }