X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..1e6e0b5cc1bd2d49ffcef4ea7bb1bb6c256d07b7:/uip/mhbuild.c diff --git a/uip/mhbuild.c b/uip/mhbuild.c index bacec100..dc0059c1 100644 --- a/uip/mhbuild.c +++ b/uip/mhbuild.c @@ -363,12 +363,11 @@ main (int argc, char **argv) unlink_outfile = 0; free_content (ct); - done (0); - /* NOT REACHED */ + return done (0); } -void +int done (int status) { /* @@ -381,4 +380,5 @@ done (int status) unlink (outfile); exit (status); + return 1; /* dead code to satisfy the compiler */ }