| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | /* 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#ifndef KR_headers#include "stdlib.h"#ifdef __cplusplusextern "C" {#endif#ifdef __cplusplusextern "C" {#endifextern void f_exit(void);#endif void#ifdef KR_headersexit_(rc) integer *rc;#elseexit_(integer *rc)#endif{#ifdef NO_ONEXIT	f_exit();#endif	exit(*rc);	}#ifdef __cplusplus}#endif#ifdef __cplusplus}#endif
 |