URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.0/] [libiberty/] [strdup.c] - Rev 1772
Go to most recent revision | Compare with Previous | Blame | View Log
char * strdup(s) char *s; { char *result = (char*)malloc(strlen(s) + 1); if (result == (char*)0) return (char*)0; strcpy(result, s); return result; }
Go to most recent revision | Compare with Previous | Blame | View Log