svn commit: r327957 - stable/11/lib/libstand
Kyle Evans
kevans at FreeBSD.org
Sun Jan 14 05:10:04 UTC 2018
Author: kevans
Date: Sun Jan 14 05:10:02 2018
New Revision: 327957
URL: https://svnweb.freebsd.org/changeset/base/327957
Log:
MFC (conceptually) r327377: Pull in strnlen for sys/boot environment
This is a direct commit to stable/11 due to restructuring of lib/libstand =>
stand/libsa in -HEAD. The diff remains the same and it is simply applied to
the previous location.
MFC r327377: Pull in strnlen from libc
strnlen is not used at the moment, but it will be when libfdt gets updated.
Prepare for the not-so-distant future by pulling in strnlen.
Modified:
stable/11/lib/libstand/Makefile
Modified: stable/11/lib/libstand/Makefile
==============================================================================
--- stable/11/lib/libstand/Makefile Sun Jan 14 05:07:15 2018 (r327956)
+++ stable/11/lib/libstand/Makefile Sun Jan 14 05:10:02 2018 (r327957)
@@ -43,7 +43,7 @@ SRCS+= bcmp.c bcopy.c bzero.c ffs.c fls.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 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
+ strnlen.c strpbrk.c strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
.if ${MACHINE_CPUARCH} == "arm"
.PATH: ${LIBC_SRC}/arm/gen
More information about the svn-src-stable
mailing list