X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..96d0d8f5b5fc28cad71f5f2cf67dc518fbbae245:/uip/vmh.c diff --git a/uip/vmh.c b/uip/vmh.c index 8b398e60..b64bdab5 100644 --- a/uip/vmh.c +++ b/uip/vmh.c @@ -278,7 +278,7 @@ main (int argc, char **argv) vmh (); - done (0); + return done (0); } @@ -1432,13 +1432,14 @@ TSTPser (int sig) /* MISCELLANY */ -void +int done (int status) { TTYoff (); pFIN (); exit (status); + return 1; /* dead code to satisfy the compiler */ }