1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

update from main archive 960814

This commit is contained in:
Ulrich Drepper
1996-08-15 01:23:29 +00:00
parent 046e3001f9
commit 706074a5bb
30 changed files with 2083 additions and 263 deletions

View File

@ -31,8 +31,6 @@ __strdup (const char *s)
if (new == NULL)
return NULL;
memcpy (new, s, len);
return (char *) new;
return (char *) memcpy (new, s, len);
}
weak_alias (__strdup, strdup)