📄 giveup.c
字号:
#ifndef lintstatic char *sccsid = "@(#)giveup.c 4.1 (ULTRIX) 7/17/90";#endif lint/* Chdir to "/" if argument is 0. Set IOT signal to system default. Call abort(III). (Shouldn't produce a core when called with a 0 argument.)*/# include "signal.h"giveup(dump){ if (!dump) chdir("/"); signal(SIGIOT,0); abort();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -