]> git.marmaro.de Git - mmh/blobdiff - uip/mhshow.c
Put in a prototype for client() to get rid of the "default prototype" warning.
[mmh] / uip / mhshow.c
index ff2bee855fbbf4858b1e8f7e32f65fc26326ba00..0791c4837e991127c7b451f4a23c7b630df8d33a 100644 (file)
@@ -475,8 +475,7 @@ do_cache:
        context_save ();                  /* save the context file  */
     }
 
-    done (0);
-    /* NOTREACHED */
+    return done (0);
 }
 
 
@@ -495,7 +494,7 @@ pipeser (int i)
 }
 
 
-void
+int
 done (int status)
 {
     CT *ctp;
@@ -505,4 +504,5 @@ done (int status)
            free_content (*ctp);
 
     exit (status);
+    return 1;  /* dead code to satisfy the compiler */
 }