Browse Source

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

Eric Andersen 23 năm trước cách đây
mục cha
commit
670b96a445
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  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 ************************************/