diff options
author | delphij <delphij@FreeBSD.org> | 2008-04-10 00:12:44 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2008-04-10 00:12:44 +0000 |
commit | b65786c8a824a1e9865c7e0083a5212d243f706e (patch) | |
tree | 2da5c9f515851a4e2a072048437aa3966940a205 /lib/libc/string/Makefile.inc | |
parent | dcaee39296eb139aa766872f602e13326fecfc08 (diff) | |
download | FreeBSD-src-b65786c8a824a1e9865c7e0083a5212d243f706e.zip FreeBSD-src-b65786c8a824a1e9865c7e0083a5212d243f706e.tar.gz |
Add memrchr(3).
Obtained from: OpenBSD
Diffstat (limited to 'lib/libc/string/Makefile.inc')
-rw-r--r-- | lib/libc/string/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/Makefile.inc b/lib/libc/string/Makefile.inc index 6d64ea5..9e5f0da 100644 --- a/lib/libc/string/Makefile.inc +++ b/lib/libc/string/Makefile.inc @@ -7,7 +7,7 @@ CFLAGS+= -I${.CURDIR}/locale # machine-independent string sources MISRCS+=bcmp.c bcopy.c bzero.c ffs.c ffsl.c fls.c flsl.c index.c memccpy.c \ - memchr.c memcmp.c \ + memchr.c memrchr.c memcmp.c \ memcpy.c memmem.c memmove.c memset.c rindex.c stpcpy.c strcasecmp.c \ strcat.c strchr.c strcmp.c strcoll.c strcpy.c strcspn.c strdup.c \ strerror.c strlcat.c strlcpy.c strlen.c strmode.c strncat.c strncmp.c \ @@ -39,6 +39,7 @@ MLINKS+=ffs.3 ffsl.3 MLINKS+=ffs.3 fls.3 MLINKS+=ffs.3 flsl.3 MLINKS+=index.3 rindex.3 +MLINKS+=memchr.3 memrchr.3 MLINKS+=strcasecmp.3 strncasecmp.3 MLINKS+=strcat.3 strncat.3 MLINKS+=strchr.3 strrchr.3 |