📄 valloc.c
字号:
#ifndef MALLOC_PROVIDED/* valloc.c -- a wrapper for valloc_r and pvalloc_r. */#include <_ansi.h>#include <reent.h>#include <stdlib.h>#include <malloc.h>#ifndef _REENT_ONLY_PTR_DEFUN (valloc, (nbytes), size_t nbytes){ return _valloc_r (_REENT, nbytes);}_PTR_DEFUN (pvalloc, (nbytes), size_t nbytes){ return _pvalloc_r (_REENT, nbytes);}#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -