Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 97167
b: refs/heads/master
c: 337e3c4
h: refs/heads/master
i:
  97165: 00a73b8
  97163: f7b3cae
  97159: 4915060
  97151: f17641d
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed May 21, 2008
1 parent 9981403 commit 3c16b06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8c5330a505ca58013a65ce9c55953ff7ded79202
refs/heads/master: 337e3c48e95e071a6ec1bfe95b55325e97f4908e
6 changes: 6 additions & 0 deletions trunk/arch/m68k/lib/string.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ char *strcpy(char *dest, const char *src)
}
EXPORT_SYMBOL(strcpy);

char *strcat(char *dest, const char *src)
{
return __kernel_strcpy(dest + __kernel_strlen(dest), src);
}
EXPORT_SYMBOL(strcat);

void *memset(void *s, int c, size_t count)
{
void *xs = s;
Expand Down

0 comments on commit 3c16b06

Please sign in to comment.