VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> 2005-05-05 16:15:17 -0700 committer: Linus Torvalds <torvalds@ppc970.osdl.org> 2005-05-05 16:36:33 -0700 commit: 0c28130b5c9e8f0b153436d3dae39482e5a70af1 parent: 23352fc252495fdc072b3bd29f57c4c6b7a6bd83
Commit Summary:
[PATCH] x86_64: make string func definition work as intended
Diffstat:
1 file changed, 4 insertions, 0 deletions
diff --git a/lib/string.c b/lib/string.c
index 4bb93ad23c60..5c8b55af0df6 100644
--- a/lib/string.c
+++ b/lib/string.c
@@ -65,6 +65,7 @@ EXPORT_SYMBOL(strnicmp);
  * @dest: Where to copy the string to
  * @src: Where to copy the string from
  */
+#undef strcpy
 char * strcpy(char * dest,const char *src)
 {
 	char *tmp = dest;
@@ -132,6 +133,7 @@ EXPORT_SYMBOL(strlcpy);
  * @dest: The string to be appended to
  * @src: The string to append to it
  */
+#undef strcat
 char * strcat(char * dest, const char * src)
 {
 	char *tmp = dest;
@@ -209,6 +211,7 @@ EXPORT_SYMBOL(strlcat);
  * @cs: One string
  * @ct: Another string
  */
+#undef strcmp
 int strcmp(const char * cs,const char * ct)
 {
 	register signed char __res;
@@ -514,6 +517,7 @@ EXPORT_SYMBOL(memmove);
  * @ct: Another area of memory
  * @count: The size of the area.
  */
+#undef memcmp
 int memcmp(const void * cs,const void * ct,size_t count)
 {
 	const unsigned char *su1, *su2;