usg.local.h

来自「操作系统SunOS 4.1.3版本的源码」· C头文件 代码 · 共 44 行

H
44
字号
/*	@(#)usg.local.h 1.1 92/07/30 SMI; from S5R2 1.1	*//* * Declarations and constants specific to an installation. */ /* * mailx -- a modified version of a University of California at Berkeley *	mail program *//* #define	GETHOST			/* Have gethostname syscall */#define	UNAME				/* System has uname syscall */#define	LOCAL		EMPTYID		/* Dynamically determined local host */#define MYDOMAIN	".uucp"		/* Appended to local host name */#define	MAIL		"/bin/mail"	/* Name of mail sender *//* #define SENDMAIL	"/usr/lib/sendmail"					/* Name of classy mail deliverer */#define	EDITOR		"ed"		/* Name of text editor */#define	VISUAL		"vi"		/* Name of display editor */#define	MORE		(value("PAGER") ? value("PAGER") : "pg")					/* Standard output pager */#define	LS		(value("LISTER") ? value("LISTER") : "ls")					/* Name of directory listing prog*/#define	SHELL		"/bin/sh"	/* Standard shell */#define	HELPFILE	libpath("mailx.help")					/* Name of casual help file */#define	THELPFILE	libpath("mailx.help.~")					/* Name of casual tilde help */#define	UIDMASK		0177777		/* Significant uid bits */#define	MASTER		libpath("mailx.rc")#define	APPEND				/* New mail goes to end of mailbox */#define CANLOCK				/* Locking protocol actually works */#define	UTIME				/* System implements utime(2) */#ifndef VMUNIX#include "sigretro.h"			/* Retrofit signal defs */#endif VMUNIX#define	index(s, c)	strchr((s), (c))#define	rindex(s, c)	strrchr((s), (c))

⌨️ 快捷键说明

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