llib-lmall.c
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 10 行
C
10 行
/* @(#)llib-lmall.c 1.1 */#include "malloc.h"/* Lint Library for Malloc(3x) *//* MALLOC(3X) *//* malloc, calloc, realloc and free are checked/* by the c library lint file*/int mallopt (cmd, value) int cmd, value; { return cmd+value; }struct mallinfo mallinfo () { struct mallinfo s; return (s); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?