Return type of (*done)() changed to void. default_done() replaced by
[mmh] / sbr / done.c
index bcc258c..938fdb2 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) = exit;