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

📄 mstats.c

📁 标准c库代码,可以应用于各个系统提供了大量的基本函数
💻 C
字号:
/* VxWorks provides its own version of malloc, and we can't use this   one because VxWorks does not provide sbrk.  So we have a hook to   not compile this code.  */#ifdef MALLOC_PROVIDEDint _dummy_mstats = 1;#else#include <_ansi.h>#include <reent.h>#include <stdlib.h>#include "malloc.h"#ifdef MSTATS#ifndef _REENT_ONLYvoid_DEFUN (mstats, (s),	char *s){  _mstats_r (_REENT, s);}#endif#elsemstats (){				/* dummy to keep people happy */}#endif#endif /* ! defined (MALLOC_PROVIDED) */

⌨️ 快捷键说明

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