merge from gcc

This commit is contained in:
DJ Delorie 2004-01-15 16:34:19 +00:00
parent e5c60db524
commit 211333f61a
2 changed files with 5 additions and 1 deletions

View file

@ -22,7 +22,7 @@ extern PTR memcpy PARAMS ((PTR, const PTR, size_t));
char *
strdup(s)
char *s;
const char *s;
{
size_t len = strlen (s) + 1;
char *result = (char*) malloc (len);