X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..13d528f11ebbe35544897590a4973e90d9b2f55e:/uip/mhtest.c diff --git a/uip/mhtest.c b/uip/mhtest.c index 80a0c7b3..5c031091 100644 --- a/uip/mhtest.c +++ b/uip/mhtest.c @@ -386,8 +386,7 @@ do_cache: context_save (); /* save the context file */ } - done (0); - /* NOTREACHED */ + return done (0); } @@ -421,7 +420,7 @@ pipeser (int i) } -void +int done (int status) { CT *ctp; @@ -431,4 +430,5 @@ done (int status) free_content (*ctp); exit (status); + return 1; /* dead code to satisfy the compiler */ }