Fix strcpy implementation and trie

llvm-svn: 9338
This commit is contained in:
Chris Lattner 2003-10-21 17:53:16 +00:00
parent 4034694fef
commit 10beed4236

View File

@ -23,8 +23,9 @@ char *strdup(const char *str) {
}
char *strcpy(char *s1, const char *s2) {
char *dest = s1;
while ((*s1++ = *s2++));
return s1;
return dest;
}
char *strcat(char *s1, const char *s2) {