From 670b96a4456291c9e70d10e8312286b51a66f726 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 2 Feb 2002 13:52:16 +0000 Subject: Add in a weak __mempcpy for mempcpy to make certain GNU programs happy. bother... --- libc/string/string.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libc/string') diff --git a/libc/string/string.c b/libc/string/string.c index 176ef895b..11666611a 100644 --- a/libc/string/string.c +++ b/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 ************************************/ -- cgit v1.2.3