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