X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/8f8d299c72fdf8105947681d459dde45eda94e9d..3c9700d8d045f3ff26ce5dd2a174454dafc14822:/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 */ }