mstats.c

来自「标准c库代码,可以应用于各个系统提供了大量的基本函数」· C语言 代码 · 共 36 行

C
36
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?