📄 exit.c
字号:
/* Sun doesn't provide atexit() yet. * We need this version of exit() to go with our atexit(). */#include <stdio.h> /* _cleanup() */#include <unistd.h> /* _exit() */#include "atexit.h"#include "ourhdr.h"voidexit(int status){ struct atexit *p; int i; if ( (p = __atexit) != 0) { /* we have some functions to call */ if ( (i = p->ind) <= 0) err_dump("p->ind = %d", p->ind); while (--i >= 0) (*p->fns[i])(); /* call in reverse order */ } _cleanup(); /* standard I/O cleanup */ _exit(status); /* the real thing */}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -