Add/update copyright notice in all source code files.
[mmh] / uip / mhtest.c
index 80a0c7b..a7d2d38 100644 (file)
@@ -3,6 +3,10 @@
  * mhtest.c -- test harness for MIME routines
  *
  * $Id$
+ *
+ * This code is Copyright (c) 2002, by the authors of nmh.  See the
+ * COPYRIGHT file in the root directory of the nmh distribution for
+ * complete copyright information.
  */
 
 #include <h/mh.h>
@@ -11,8 +15,8 @@
 #include <h/md5.h>
 #include <errno.h>
 #include <signal.h>
-#include <zotnet/mts/mts.h>
-#include <zotnet/tws/tws.h>
+#include <h/mts.h>
+#include <h/tws.h>
 #include <h/mime.h>
 #include <h/mhparse.h>
 #include <h/mhcachesbr.h>
@@ -52,7 +56,7 @@ static struct swit switches[] = {
 #define VERSIONSW              10
     { "version", 0 },
 #define        HELPSW                 11
-    { "help", 4 },
+    { "help", 0 },
 
 /*
  * switches for debugging
@@ -386,8 +390,7 @@ do_cache:
        context_save ();                  /* save the context file  */
     }
 
-    done (0);
-    /* NOTREACHED */
+    return done (0);
 }
 
 
@@ -421,7 +424,7 @@ pipeser (int i)
 }
 
 
-void
+int
 done (int status)
 {
     CT *ctp;
@@ -431,4 +434,5 @@ done (int status)
            free_content (*ctp);
 
     exit (status);
+    return 1;  /* dead code to satisfy the compiler */
 }