diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-20 22:59:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-20 22:59:05 +0000 |
commit | b04193a04adcdf95852b6978ab3e95da7bfc03ed (patch) | |
tree | 0b3d5ce97b78217deb374f404c021efbe37bd7f4 /sys/arch/i386/stand/cdboot | |
parent | 5c3bad716b8fd62ceb09fc597c1b634f6858090e (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/i386/stand/cdboot')
-rw-r--r-- | sys/arch/i386/stand/cdboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/cdboot/Makefile b/sys/arch/i386/stand/cdboot/Makefile index 0c4dc2e159f..fe157e400bd 100644 --- a/sys/arch/i386/stand/cdboot/Makefile +++ b/sys/arch/i386/stand/cdboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.31 2017/10/17 19:31:56 naddy Exp $ +# $OpenBSD: Makefile,v 1.32 2019/04/20 22:59:03 deraadt Exp $ MAN= cdboot.8 @@ -27,7 +27,7 @@ SRCS+= softraid_i386.c SRCS+= bootarg.c cmd.c vars.c .PATH: ${S}/lib/libsa -SRCS+= alloc.c ctime.c exit.c getchar.c memcmp.c memcpy.c memset.c printf.c \ +SRCS+= alloc.c ctime.c exit.c getchar.c memcmp.c memcpy.c memmove.c memset.c printf.c \ putchar.c snprintf.c strcmp.c strerror.c strlen.c strncmp.c strncpy.c \ strtol.c strtoll.c SRCS+= close.c closeall.c cons.c cread.c dev.c disklabel.c dkcksum.c fstat.c \ |