diff options
author | Roman Zippel <zippel@linux-m68k.org> | 2006-10-06 00:43:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-06 08:53:40 -0700 |
commit | d6359fd783251238dbbf70b7c2fc745db25cf51f (patch) | |
tree | 8f11ac5e1770546be6ee56c344c3cff19fe58c5f /arch/m68k/lib | |
parent | 7236e978a3883406ca06ee79e0739743c7c92a85 (diff) | |
download | op-kernel-dev-d6359fd783251238dbbf70b7c2fc745db25cf51f.zip op-kernel-dev-d6359fd783251238dbbf70b7c2fc745db25cf51f.tar.gz |
[PATCH] m68k: cleanup string functions
- cleanup asm of string functions
- deinline strncat()/strncmp()
- provide non-inlined strcpy()
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/m68k/lib')
-rw-r--r-- | arch/m68k/lib/string.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/arch/m68k/lib/string.c b/arch/m68k/lib/string.c index b92b89e..891e134 100644 --- a/arch/m68k/lib/string.c +++ b/arch/m68k/lib/string.c @@ -1,6 +1,19 @@ +/* + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file COPYING in the main directory of this archive + * for more details. + */ + +#define __IN_STRING_C -#include <linux/types.h> #include <linux/module.h> +#include <linux/string.h> + +char *strcpy(char *dest, const char *src) +{ + return __kernel_strcpy(dest, src); +} +EXPORT_SYMBOL(strcpy); void *memset(void *s, int c, size_t count) { |