X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/13f32d980c37d425a846e59ea63949bd5c2572c3..d2a07ad8fcc5d1afe2faeda4744e66735deedd71:/sbr/done.c diff --git a/sbr/done.c b/sbr/done.c index b5072a69..05bcf524 100644 --- a/sbr/done.c +++ b/sbr/done.c @@ -2,14 +2,11 @@ /* * 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;