summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/stand
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2019-04-20 22:59:05 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2019-04-20 22:59:05 +0000
commitb04193a04adcdf95852b6978ab3e95da7bfc03ed (patch)
tree0b3d5ce97b78217deb374f404c021efbe37bd7f4 /sys/arch/sparc64/stand
parent5c3bad716b8fd62ceb09fc597c1b634f6858090e (diff)
libsa's memcpy() is actually memmove(). make a proper memmove(), and give
memcpy() correct behaviour. This also brings the bcopy() macro into line.
Diffstat (limited to 'sys/arch/sparc64/stand')
-rw-r--r--sys/arch/sparc64/stand/libsa/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/stand/libsa/Makefile b/sys/arch/sparc64/stand/libsa/Makefile
index 9c7d4a3cf83..f8eda95fa46 100644
--- a/sys/arch/sparc64/stand/libsa/Makefile
+++ b/sys/arch/sparc64/stand/libsa/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.12 2016/11/06 16:04:20 tb Exp $
+# $OpenBSD: Makefile,v 1.13 2019/04/20 22:59:04 deraadt Exp $
LIB= sa
@@ -17,7 +17,7 @@ CPPFLAGS+= -D__INTERNAL_LIBSA_CREAD
# stand routines
SRCS= alloc.c exit.c getfile.c getln.c globals.c \
- memcmp.c memcpy.c memset.c printf.c snprintf.c strerror.c strncpy.c
+ memcmp.c memcpy.c memmove.c memset.c printf.c snprintf.c strerror.c strncpy.c
# io routines
SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c ioctl.c lseek.c \