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

📄 f77_aloc.c

📁 在Linxu程序设计当中
💻 C
字号:
#include "f2c.h"#undef abs#undef min#undef max#include "stdio.h"static integer memfailure = 3;#ifdef KR_headersextern char *malloc();extern void exit_(); char *F77_aloc(Len, whence) integer Len; char *whence;#else#include "stdlib.h"#ifdef __cplusplusextern "C" {#endif#ifdef __cplusplusextern "C" {#endifextern void exit_(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);		exit_(&memfailure);		}	return rv;	}#ifdef __cplusplus}#endif

⌨️ 快捷键说明

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