URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [stdlib/] [malign.c] - Rev 1765
Compare with Previous | Blame | View Log
/* malign.c -- a wrapper for memalign_r. */ #include <_ansi.h> #include <reent.h> #include <stdlib.h> #include <malloc.h> #ifndef _REENT_ONLY _PTR _DEFUN (memalign, (align, nbytes), size_t align _AND size_t nbytes) { return _memalign_r (_REENT, align, nbytes); } #endif