📄 mstats.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 + -