X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/13f32d980c37d425a846e59ea63949bd5c2572c3..e605596f06f250775f89ddfe3f7f2c8fcfda1c4e:/sbr/done.c diff --git a/sbr/done.c b/sbr/done.c index b5072a69..c703aba5 100644 --- a/sbr/done.c +++ b/sbr/done.c @@ -1,15 +1,10 @@ - -/* - * done.c -- terminate the program +/* done.c -- terminate the program * - * $Id$ + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include -int -done (int status) -{ - exit (status); - return 1; /* dead code to satisfy the compiler */ -} +void (*done) (int) NORETURN = exit;