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

📄 valloc.c

📁 KPIT GNU Tools is a set of GNU development tools for Renesas microcontrollers.
💻 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 + -