[PATCH] UML - Export memmove

From: Jeff Dike
Date: Thu Sep 16 2004 - 23:17:06 EST


Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx>

Index: 2.6.9-rc2/arch/um/os-Linux/user_syms.c
===================================================================
--- 2.6.9-rc2.orig/arch/um/os-Linux/user_syms.c 2004-09-16 22:59:06.000000000 -0400
+++ 2.6.9-rc2/arch/um/os-Linux/user_syms.c 2004-09-16 23:04:22.000000000 -0400
@@ -14,11 +14,13 @@

extern size_t strlen(const char *);
extern void *memcpy(void *, const void *, size_t);
+extern void *memmove(void *, const void *, size_t);
extern void *memset(void *, int, size_t);
extern int printf(const char *, ...);

EXPORT_SYMBOL(strlen);
EXPORT_SYMBOL(memcpy);
+EXPORT_SYMBOL(memmove);
EXPORT_SYMBOL(memset);
EXPORT_SYMBOL(printf);


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/