URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [stdlib/] [msize.c] - Rev 40
Go to most recent revision | Compare with Previous | Blame | View Log
/* msize.c -- a wrapper for malloc_usable_size. */ #include <_ansi.h> #include <reent.h> #include <stdlib.h> #include <malloc.h> #ifndef _REENT_ONLY size_t _DEFUN (malloc_usable_size, (ptr), _PTR ptr) { return _malloc_usable_size_r (_REENT, ptr); } #endif
Go to most recent revision | Compare with Previous | Blame | View Log