aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2016-01-06 17:33:32 +0000
committerEd Maste <emaste@FreeBSD.org>2016-01-06 17:33:32 +0000
commit4053652b9250470dee4681c12cdd478dd850cc50 (patch)
tree78d60329d7edcafb32a3740f41fdc8d737050e37 /lib
parent3e972f44093c9fa5f585388920bb1caccbe6ff15 (diff)
downloadsrc-4053652b9250470dee4681c12cdd478dd850cc50.tar.gz
src-4053652b9250470dee4681c12cdd478dd850cc50.zip
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.
Notes
Notes: svn path=/head/; revision=293241
Diffstat (limited to 'lib')
-rw-r--r--lib/libstand/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libstand/Makefile b/lib/libstand/Makefile
index 9d1f6bcd44a0..ee8087be3ea6 100644
--- a/lib/libstand/Makefile
+++ b/lib/libstand/Makefile
@@ -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"