nonstatic function for atexit, check if atexit fails
[mmh] / uip / mhtest.c
index a1718db..aa7e411 100644 (file)
@@ -95,7 +95,9 @@ main(int argc, char **argv)
        struct msgs *mp = NULL;
        CT ct, *ctp;
 
-       atexit(freects_done);
+       if (atexit(freects_done) != 0) {
+               adios(NULL, "atexit failed");
+       }
 
        setlocale(LC_ALL, "");
        invo_name = mhbasename(argv[0]);