]> git.marmaro.de Git - mmh/blobdiff - uip/mhlist.c
Put in a prototype for client() to get rid of the "default prototype" warning.
[mmh] / uip / mhlist.c
index d5f290823540ebd5116f8f252a3b0c5df5b07a4c..ec2f9459f98735719338ec4011f830269d5797a8 100644 (file)
@@ -395,8 +395,7 @@ do_cache:
        context_save ();                  /* save the context file  */
     }
 
-    done (0);
-    /* NOTREACHED */
+    return done (0);
 }
 
 
@@ -415,7 +414,7 @@ pipeser (int i)
 }
 
 
-void
+int
 done (int status)
 {
     CT *ctp;
@@ -425,4 +424,5 @@ done (int status)
            free_content (*ctp);
 
     exit (status);
+    return 1;  /* dead code to satisfy the compiler */
 }