Browse Source

Add in a weak __mempcpy for mempcpy to make certain GNU
programs happy. bother...

Eric Andersen 23 years ago
parent
commit
670b96a445
1 changed files with 1 additions and 0 deletions
  1. 1 0
      libc/string/string.c

+ 1 - 0
libc/string/string.c

@@ -321,6 +321,7 @@ void *mempcpy(void *dst, const void *src, size_t len)
 
 	return (void *) a;
 }
+weak_alias(mempcpy, __mempcpy);
 #endif
 
 /********************** Function memccpy ************************************/