summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2021-10-25 21:28:28 +0200
committerAlejandro Colomar <alx.manpages@gmail.com>2022-09-05 03:01:30 +0200
commitb77b0f3ed72f3957b3007451aee838f104a74a0c (patch)
tree5692679da8d5e3f7fdff86c59673c1dc82d128a8
parent1cfde9749c9b3a99ba12714d56419367e8adb83c (diff)
bcopy.3: SYNOPSIS: Mark as [[deprecated]]
memmove(3) completely replaces bcopy(3), being an almost identical function, except for the different order in the arguments. memmove(3) is part of ISO C and POSIX. Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
-rw-r--r--man3/bcopy.32
1 files changed, 1 insertions, 1 deletions
diff --git a/man3/bcopy.3 b/man3/bcopy.3
index 495be73f0..a0ce761b0 100644
--- a/man3/bcopy.3
+++ b/man3/bcopy.3
@@ -20,7 +20,7 @@ Standard C library
.nf
.B #include <strings.h>
.PP
-.BI "void bcopy(const void *" src ", void *" dest ", size_t " n );
+.BI "[[deprecated]] void bcopy(const void *" src ", void *" dest ", size_t " n );
.fi
.SH DESCRIPTION
The