blob: adf3d8592748b9725ca82221f6ca8f293df63f9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* 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>
extern void f_exit (void);
void
G77_exit_0 (integer * rc)
{
#ifdef NO_ONEXIT
f_exit ();
#endif
exit (*rc);
}
|