X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhbuild.c;h=dc0059c1b51f0e81b6a6828d6476b949447fa715;hp=bacec1003d26f62ecb697b4d678dfdf9f9b91da6;hb=3c9700d8d045f3ff26ce5dd2a174454dafc14822;hpb=8f8d299c72fdf8105947681d459dde45eda94e9d diff --git a/uip/mhbuild.c b/uip/mhbuild.c index bacec10..dc0059c 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 */ }