svn commit: r293241 - head/lib/libstand

Ed Maste emaste at FreeBSD.org
Wed Jan 6 17:33:34 UTC 2016


Author: emaste
Date: Wed Jan  6 17:33:32 2016
New Revision: 293241
URL: https://svnweb.freebsd.org/changeset/base/293241

Log:
  Add fls() to libstand
  
  Although we don't use it in tree yet libstand is installed as user-
  facing /usr/liblibstand.a, and some work in progress makes use of it.
  Instead of conflicting with ongoing libstand Makefile deduplication,
  just add it now.

Modified:
  head/lib/libstand/Makefile

Modified: head/lib/libstand/Makefile
==============================================================================
--- head/lib/libstand/Makefile	Wed Jan  6 17:13:40 2016	(r293240)
+++ head/lib/libstand/Makefile	Wed Jan  6 17:33:32 2016	(r293241)
@@ -38,8 +38,9 @@ SRCS+= ntoh.c
 
 # string functions from libc
 .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 \
+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
 .if ${MACHINE_CPUARCH} == "arm"


More information about the svn-src-head mailing list