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

📄 f77_aloc.c

📁 gcc-2.95.3 Linux下最常用的C编译器
💻 C
字号:
#include "f2c.h"#undef abs#undef min#undef max#include <stdio.h>static integer memfailure = 3;#ifdef KR_headersextern char *malloc();extern void G77_exit_0 (); char *F77_aloc(Len, whence) integer Len; char *whence;#else#include <stdlib.h>#ifdef __cplusplusextern "C" {#endifextern void G77_exit_0 (integer*);#ifdef __cplusplus	}#endif char *F77_aloc(integer Len, char *whence)#endif{	char *rv;	unsigned int uLen = (unsigned int) Len;	/* for K&R C */	if (!(rv = (char*)malloc(uLen))) {		fprintf(stderr, "malloc(%u) failure in %s\n",			uLen, whence);		G77_exit_0 (&memfailure);		}	return rv;	}

⌨️ 快捷键说明

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