1999-09-18 10:51:31 +00:00
|
|
|
/* This gives the effect of
|
|
|
|
|
|
|
|
subroutine exit(rc)
|
|
|
|
integer*4 rc
|
|
|
|
stop
|
|
|
|
end
|
|
|
|
|
|
|
|
* with the added side effect of supplying rc as the program's exit code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "f2c.h"
|
|
|
|
#undef abs
|
|
|
|
#undef min
|
|
|
|
#undef max
|
|
|
|
#include <stdlib.h>
|
2003-07-11 03:42:19 +00:00
|
|
|
extern void f_exit (void);
|
1999-09-18 10:51:31 +00:00
|
|
|
|
2003-07-11 03:42:19 +00:00
|
|
|
void
|
|
|
|
G77_exit_0 (integer * rc)
|
1999-09-18 10:51:31 +00:00
|
|
|
{
|
|
|
|
#ifdef NO_ONEXIT
|
2003-07-11 03:42:19 +00:00
|
|
|
f_exit ();
|
1999-09-18 10:51:31 +00:00
|
|
|
#endif
|
2003-07-11 03:42:19 +00:00
|
|
|
exit (*rc);
|
1999-09-18 10:51:31 +00:00
|
|
|
}
|