]> git.marmaro.de Git - mmh/blobdiff - sbr/done.c
Return type of (*done)() changed to void. default_done() replaced by
[mmh] / sbr / done.c
index bcc258ccf104cdc136b6ab00ec0d53113a81c61c..938fdb2d683d03db7d963aa5d3ffc1c67890d877 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;