URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [stdlib/] [strdup.c] - Rev 1010
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef _REENT_ONLY #include <reent.h> #include <stdlib.h> #include <string.h> char * _DEFUN (strdup, (str), _CONST char *str) { return _strdup_r (_REENT, str); } #endif /* !_REENT_ONLY */
Go to most recent revision | Compare with Previous | Blame | View Log