diff options
author | 2020-06-29 15:30:58 +0000 | |
---|---|---|
committer | 2020-06-29 15:30:58 +0000 | |
commit | 50857149ad9113f0addb6fdf5f88bf9894eb1d0e (patch) | |
tree | 6e5154a3b88c498141331eeed5a215b45ff177c1 /lib/libc | |
parent | Don't create sd(4) devices for nvme(4) namespaces that are (diff) | |
download | wireguard-openbsd-50857149ad9113f0addb6fdf5f88bf9894eb1d0e.tar.xz wireguard-openbsd-50857149ad9113f0addb6fdf5f88bf9894eb1d0e.zip |
Use C versions of bcopy(3) and memmove(3) for now as the assembly version
of bcopy(9) doesn't work in its current state.
ok deraadt@
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/powerpc64/string/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/powerpc64/string/Makefile.inc b/lib/libc/arch/powerpc64/string/Makefile.inc index ba6e9dde0e5..66da49ca96a 100644 --- a/lib/libc/arch/powerpc64/string/Makefile.inc +++ b/lib/libc/arch/powerpc64/string/Makefile.inc @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile.inc,v 1.2 2020/06/26 20:16:21 naddy Exp $ +# $OpenBSD: Makefile.inc,v 1.3 2020/06/29 15:30:58 kettenis Exp $ -SRCS+= memcpy.c memmove.S \ +SRCS+= bcopy.c memcpy.c memmove.c \ strchr.c strrchr.c \ bcmp.c bzero.c ffs.S memchr.c memcmp.c memset.c strcat.c \ strcmp.c strcpy.c strcspn.c strlen.c strlcat.c strlcpy.c \ |