URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [stdlib/] [realloc.c] - Rev 39
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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
Go to most recent revision | Compare with Previous | Blame | View Log