Module Name: src
Committed By: riastradh
Date: Mon Jun 24 01:12:08 UTC 2013
Modified Files:
src/distrib/sets/lists/comp: mi
src/lib/libc/string: Makefile.inc
Log Message:
Add consttime_bcmp(3) and explicit_bzero(3) to makefile and set lists.
To generate a diff of this commit:
cvs rdiff -u -r1.1825 -r1.1826 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.76 -r1.77 src/lib/libc/string/Makefile.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/sets/lists/comp/mi
diff -u src/distrib/sets/lists/comp/mi:1.1825 src/distrib/sets/lists/comp/mi:1.1826
--- src/distrib/sets/lists/comp/mi:1.1825 Thu Jun 20 20:43:33 2013
+++ src/distrib/sets/lists/comp/mi Mon Jun 24 01:12:08 2013
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1825 2013/06/20 20:43:33 christos Exp $
+# $NetBSD: mi,v 1.1826 2013/06/24 01:12:08 riastradh Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@@ -5159,6 +5159,7 @@
./usr/share/man/cat3/conj.0 comp-c-catman complex,.cat
./usr/share/man/cat3/conjf.0 comp-c-catman complex,.cat
./usr/share/man/cat3/conjl.0 comp-c-catman complex,.cat
+./usr/share/man/cat3/consttime_bcmp.0 comp-c-catman .cat
./usr/share/man/cat3/copysign.0 comp-c-catman .cat
./usr/share/man/cat3/copysignf.0 comp-c-catman .cat
./usr/share/man/cat3/copysignl.0 comp-c-catman .cat
@@ -5557,6 +5558,7 @@
./usr/share/man/cat3/exp2.0 comp-c-catman .cat
./usr/share/man/cat3/exp2f.0 comp-c-catman .cat
./usr/share/man/cat3/expf.0 comp-c-catman .cat
+./usr/share/man/cat3/explicit_bzero.0 comp-c-catman .cat
./usr/share/man/cat3/expm1.0 comp-c-catman .cat
./usr/share/man/cat3/expm1f.0 comp-c-catman .cat
./usr/share/man/cat3/extattr.0 comp-obsolete obsolete
@@ -11700,6 +11702,7 @@
./usr/share/man/html3/conj.html comp-c-htmlman complex,html
./usr/share/man/html3/conjf.html comp-c-htmlman complex,html
./usr/share/man/html3/conjl.html comp-c-htmlman complex,html
+./usr/share/man/html3/consttime_bcmp.html comp-c-htmlman html
./usr/share/man/html3/copysign.html comp-c-htmlman html
./usr/share/man/html3/copysignf.html comp-c-htmlman html
./usr/share/man/html3/copysignl.html comp-c-htmlman html
@@ -12096,6 +12099,7 @@
./usr/share/man/html3/exp2.html comp-c-htmlman html
./usr/share/man/html3/exp2f.html comp-c-htmlman html
./usr/share/man/html3/expf.html comp-c-htmlman html
+./usr/share/man/html3/explicit_bzero.html comp-c-htmlman html
./usr/share/man/html3/expm1.html comp-c-htmlman html
./usr/share/man/html3/expm1f.html comp-c-htmlman html
./usr/share/man/html3/extattr.html comp-obsolete obsolete
@@ -18149,6 +18153,7 @@
./usr/share/man/man3/conj.3 comp-c-man complex,.man
./usr/share/man/man3/conjf.3 comp-c-man complex,.man
./usr/share/man/man3/conjl.3 comp-c-man complex,.man
+./usr/share/man/man3/consttime_bcmp.3 comp-c-man .man
./usr/share/man/man3/copysign.3 comp-c-man .man
./usr/share/man/man3/copysignf.3 comp-c-man .man
./usr/share/man/man3/copysignl.3 comp-c-man .man
@@ -18547,6 +18552,7 @@
./usr/share/man/man3/exp2.3 comp-c-man .man
./usr/share/man/man3/exp2f.3 comp-c-man .man
./usr/share/man/man3/expf.3 comp-c-man .man
+./usr/share/man/man3/explicit_bzero.3 comp-c-man .man
./usr/share/man/man3/expm1.3 comp-c-man .man
./usr/share/man/man3/expm1f.3 comp-c-man .man
./usr/share/man/man3/extattr.3 comp-obsolete obsolete
Index: src/lib/libc/string/Makefile.inc
diff -u src/lib/libc/string/Makefile.inc:1.76 src/lib/libc/string/Makefile.inc:1.77
--- src/lib/libc/string/Makefile.inc:1.76 Thu Aug 30 12:16:48 2012
+++ src/lib/libc/string/Makefile.inc Mon Jun 24 01:12:08 2013
@@ -1,5 +1,5 @@
# from: @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
-# $NetBSD: Makefile.inc,v 1.76 2012/08/30 12:16:48 drochner Exp $
+# $NetBSD: Makefile.inc,v 1.77 2013/06/24 01:12:08 riastradh Exp $
# string sources
.PATH: ${ARCHDIR}/string ${.CURDIR}/string
@@ -39,7 +39,8 @@ SRCS+= _strlcat.c _strlcpy.c _strerror_r
.include "${ARCHDIR}/string/Makefile.inc"
-MAN+= bm.3 bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 \
+MAN+= bm.3 bcmp.3 bcopy.3 bstring.3 bzero.3 consttime_bcmp.3 \
+ explicit_bzero.3 ffs.3 index.3 \
memccpy.3 memchr.3 memcmp.3 memcpy.3 memmem.3 memmove.3 memset.3 \
popcount.3 \
rindex.3 strcasecmp.3 strcat.3 strchr.3 strcmp.3 strcoll.3 \