X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=arch%2Fm68k%2Flib%2Fstring.c;h=891e1347bc4e4c1de3d0455d40905dce19992b08;hb=97bf2856c6014879bd04983a3e9dfcdac1e7fe85;hp=b92b89e1ea0cf55466b58d76dec6343032c66ff1;hpb=76828883507a47dae78837ab5dec5a5b4513c667;p=linux-2.6.git diff --git a/arch/m68k/lib/string.c b/arch/m68k/lib/string.c index b92b89e1e..891e1347b 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 #include +#include + +char *strcpy(char *dest, const char *src) +{ + return __kernel_strcpy(dest, src); +} +EXPORT_SYMBOL(strcpy); void *memset(void *s, int c, size_t count) {