소스 검색

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 ************************************/