From b65c2ed536d8f5ff6cb0003ed9258113b1815967 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Sat, 2 Dec 2017 12:49:45 +0100 Subject: [PATCH] : Remove bcopyb() prototype. It was a i386 specific function which was removed in f4c88b0b86f1810. Reported-by: zrj --- sys/sys/systm.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sys/sys/systm.h b/sys/sys/systm.h index c06bb5f733..8302b5bbbb 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -236,12 +236,7 @@ u_quad_t strtouq(const char *, char **, int) __nonnull(1); /* * note: some functions commonly used by device drivers may be passed * pointers to volatile storage, volatile set to avoid warnings. - * - * NOTE: bcopyb() - is a dumb byte-granular bcopy. This routine is - * explicitly not meant to be sophisticated. */ -void bcopyb(const void *from, void *to, size_t len) - __nonnull(1) __nonnull(2); void bcopy(volatile const void *from, volatile void *to, size_t len) __nonnull(1) __nonnull(2); void bzero(volatile void *buf, size_t len) __nonnull(1); -- 2.11.4.GIT