* docs/MAIL.FILTERING: added note on removing procmail -f or
[mmh] / sbr / done.c
index bcc258c..65ec1cb 100644 (file)
 
 #include <h/mh.h>
 
-int (*done) (int) = default_done;
-
-int
-default_done (int status)
-{
-    exit (status);
-    return 1;  /* dead code to satisfy the compiler */
-}
+void (*done) (int) NORETURN = exit;