?? realloc.c
字號:
#ifdef MALLOC_PROVIDEDint _dummy_calloc = 1;#else/* realloc.c -- a wrapper for realloc_r. */#include <_ansi.h>#include <reent.h>#include <stdlib.h>#include <malloc.h>#ifndef _REENT_ONLY_PTR_DEFUN (realloc, (ap, nbytes), _PTR ap _AND size_t nbytes){ return _realloc_r (_REENT, ap, nbytes);}#endif#endif /* MALLOC_PROVIDED */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -