svn commit: r294342 - in stable/10: lib/libstand sys/boot/libstand32
Ian Lepore
ian at FreeBSD.org
Tue Jan 19 21:27:27 UTC 2016
Author: ian
Date: Tue Jan 19 21:27:25 2016
New Revision: 294342
URL: https://svnweb.freebsd.org/changeset/base/294342
Log:
MFC r292234, r292527:
Add strlcat() and strlcpy() to libstand and libstand32.
Modified:
stable/10/lib/libstand/Makefile
stable/10/sys/boot/libstand32/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/lib/libstand/Makefile
==============================================================================
--- stable/10/lib/libstand/Makefile Tue Jan 19 21:21:59 2016 (r294341)
+++ stable/10/lib/libstand/Makefile Tue Jan 19 21:27:25 2016 (r294342)
@@ -59,8 +59,8 @@ SRCS+= ntoh.c
.if ${MACHINE_CPUARCH} != "ia64"
SRCS+= bcmp.c bcopy.c bzero.c ffs.c memccpy.c memchr.c memcmp.c memcpy.c \
memmove.c memset.c qdivrem.c strcat.c strchr.c strcmp.c strcpy.c \
- strcspn.c strlen.c strncat.c strncmp.c strncpy.c strpbrk.c \
- strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
+ strcspn.c strlcat.c strlcpy.c strlen.c strncat.c strncmp.c strncpy.c \
+ strpbrk.c strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
.endif
.if ${MACHINE_CPUARCH} == "arm"
.PATH: ${.CURDIR}/../libc/arm/gen
Modified: stable/10/sys/boot/libstand32/Makefile
==============================================================================
--- stable/10/sys/boot/libstand32/Makefile Tue Jan 19 21:21:59 2016 (r294341)
+++ stable/10/sys/boot/libstand32/Makefile Tue Jan 19 21:27:25 2016 (r294342)
@@ -63,8 +63,8 @@ SRCS+= ntoh.c
.if ${MACHINE_CPUARCH} != "ia64"
SRCS+= bcmp.c bcopy.c bzero.c ffs.c memccpy.c memchr.c memcmp.c memcpy.c \
memmove.c memset.c qdivrem.c strcat.c strchr.c strcmp.c strcpy.c \
- strcspn.c strlen.c strncat.c strncmp.c strncpy.c strpbrk.c \
- strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
+ strcspn.c strlcat.c strlcpy.c strlen.c strncat.c strncmp.c strncpy.c \
+ strpbrk.c strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
.endif
.if ${MACHINE_CPUARCH} == "arm"
.PATH: ${LIBC}/arm/gen
More information about the svn-src-stable-10
mailing list