exit.c

来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· C语言 代码 · 共 39 行

C
39
字号
/* 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"
#include "netlib.h"
#undef abs
#undef min
#undef max
#ifndef KR_headers
#include "stdlib.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void f_exit(void);
#endif

 void
#ifdef KR_headers
exit_(rc) integer *rc;
#else
exit_(integer *rc)
#endif
{
#ifdef NO_ONEXIT
        f_exit();
#endif
        exit(*rc);
        }
#ifdef __cplusplus
}
#endif

⌨️ 快捷键说明

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