ngen_error.c

来自「su 的源代码库」· C语言 代码 · 共 38 行

C
38
字号
/* Copyright (c) Colorado School of Mines, 2006.*//* All rights reserved.                       *//* *  GENESIS  Copyright (c) 1986, 1990 by John J. Grefenstette *  This program may be freely copied for educational *  and research purposes.  All other rights reserved. * *  file:	error.c * *  purpose:	print message in error log file and abort. * *  modified:	7 feb 86 */#include <stdio.h>Error(s)char *s;{	FILE *fopen(), *fp;	long clock;	long time();	char *ctime();	fp = fopen("log.error", "a");	fprintf(fp, "%s\n", s);	time(&clock);	fprintf(fp, "%s\n", ctime(&clock));	fclose(fp);	fprintf(stderr, "%s\n", s); 	pvmLeave();			/* Leaving PVM */			exit(1);}/*** end of file ***/

⌨️ 快捷键说明

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