]> Pileus Git - ~andy/linux/blobdiff - arch/m68k/lib/string.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
[~andy/linux] / arch / m68k / lib / string.c
index b92b89e1ea0cf55466b58d76dec6343032c66ff1..891e1347bc4e4c1de3d0455d40905dce19992b08 100644 (file)
@@ -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)
 {