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