Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Dec 2015 02:02:43 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r292527 - head/sys/boot/libstand32
Message-ID:  <201512210202.tBL22hZP060821@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ian
Date: Mon Dec 21 02:02:43 2015
New Revision: 292527
URL: https://svnweb.freebsd.org/changeset/base/292527

Log:
  Add strlcat() and strlcpy() to libstand32.  This should have been part of
  r292234, but I forgot there was a libstand32.
  
  Submitted by:	martymac
  Pointy hat:	ian

Modified:
  head/sys/boot/libstand32/Makefile

Modified: head/sys/boot/libstand32/Makefile
==============================================================================
--- head/sys/boot/libstand32/Makefile	Mon Dec 21 01:48:16 2015	(r292526)
+++ head/sys/boot/libstand32/Makefile	Mon Dec 21 02:02:43 2015	(r292527)
@@ -41,8 +41,8 @@ SRCS+= ntoh.c
 .PATH: ${LIBC_SRC}/string
 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
 .if ${MACHINE_CPUARCH} == "arm"
 .PATH: ${LIBC_SRC}/arm/gen
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512210202.tBL22hZP060821>