Updated #include's to point to new location of mts.h on mts/generic
[mmh] / uip / vmh.c
index 8b398e6..2c2f6b5 100644 (file)
--- a/uip/vmh.c
+++ b/uip/vmh.c
@@ -106,7 +106,7 @@ static struct swit switches[] = {
 #define VERSIONSW             3
     { "version", 0 },
 #define        HELPSW                4
-    { "help", 4 },
+    { "help", 0 },
     { NULL, 0 }
 };
 
@@ -278,7 +278,7 @@ main (int argc, char **argv)
 
     vmh ();
 
-    done (0);
+    return done (0);
 }
 
 
@@ -1432,13 +1432,14 @@ TSTPser (int sig)
 
 /* MISCELLANY */
 
-void
+int
 done (int status)
 {
     TTYoff ();
     pFIN ();
 
     exit (status);
+    return 1;  /* dead code to satisfy the compiler */
 }