⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exit_.c

📁 gcc-2.95.3 Linux下最常用的C编译器
💻 C
字号:
/* 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" {#endifextern void f_exit(void);#endif void#ifdef KR_headersG77_exit_0 (rc) integer *rc;#elseG77_exit_0 (integer *rc)#endif{#ifdef NO_ONEXIT	f_exit();#endif	exit(*rc);	}#ifdef __cplusplus}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -