URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.18.0/] [newlib/] [libc/] [string/] [strdup.c] - Rev 517
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