diff options
author | emaste <emaste@FreeBSD.org> | 2016-01-06 17:33:32 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2016-01-06 17:33:32 +0000 |
commit | 23dbf7923cfa9129edc62e6316397c7189d9e656 (patch) | |
tree | 78d60329d7edcafb32a3740f41fdc8d737050e37 /lib/libstand | |
parent | 76cb3b35021b722f3e8330ec6ac0df444fdcc651 (diff) | |
download | FreeBSD-src-23dbf7923cfa9129edc62e6316397c7189d9e656.zip FreeBSD-src-23dbf7923cfa9129edc62e6316397c7189d9e656.tar.gz |
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.
Diffstat (limited to 'lib/libstand')
-rw-r--r-- | lib/libstand/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libstand/Makefile b/lib/libstand/Makefile index 9d1f6bc..ee8087b 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" |