URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [newlib/] [libc/] [string/] [strdup.c] - Rev 831
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