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