⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uupoll.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
#ifndef lintstatic char sccsid[] = "@(#)uupoll.c	4.1 (decvax!larry) 7/2/90";#endif/* * Poll named system(s). * * The poll occurs even if recent attempts have failed, * but not if L.sys prohibits the call (e.g. wrong time of day). * * AUTHOR *	Tom Truscott (rti!trt) */#include "uucp.h"main(argc, argv)int argc;char **argv;{	chdir(Spool);	strcpy(Progname, "uupoll");	uucpname(Myname);	if (argc < 2) {		fprintf(stderr, "usage: uupoll system ...\n");		exit(1);	}	for (--argc, ++argv; argc > 0; --argc, ++argv) {		if (strcmp(argv[0], Myname) == SAME) {			fprintf(stderr, "This *is* %s!\n", Myname);			continue;		}		if (versys(argv[0])) {			fprintf(stderr, "%s: unknown system.\n", argv[0]);			continue;		}		/* Attempt the call, -f forces a connect attempt */		xuucico(argv[0], "-f");	}	exit(0);}cleanup(code)int code;{	exit(code);}

⌨️ 快捷键说明

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