فهرست منبع

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

Eric Andersen 23 سال پیش
والد
کامیت
670b96a445
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  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 ************************************/