ttyd.h

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C头文件 代码 · 共 39 行

H
39
字号
/* ttyd.h - definitions for ttyd *//* The Regents of the University of California wish to make it known that: * * *				  DISCLAIMER * *	"Although each program has been tested by its contributor, no *	warranty, express or implied, is made by the contributor or the *	University of California, as to the accuracy and functioning of *	the program and related program material, nor shall the fact of *	distribution constitute any such warranty, and no responsibility *	is assumed by the contributor or the University of California in *	connection herewith." * *//*  */#define	MAIL	"/bin/mail"#define	SMLWAIT	60		/* seconds for select() */#define	NOTOK	(-1)#define	OK	0#define	DONE	1#define	TRUE	1#define	FALSE	0#define	serror	\	(errno > 0 && errno < sys_nerr ? sys_errlist[errno] : "Unknown error")extern int  errno;extern int  sys_nerr;extern char *sys_errlist[];extern char *sys_siglist[];

⌨️ 快捷键说明

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