diff options
author | Xin LI <delphij@FreeBSD.org> | 2008-04-10 00:12:44 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2008-04-10 00:12:44 +0000 |
commit | 82e45205c802a06f0663e5f0e4fd2f2f047d2936 (patch) | |
tree | 2da5c9f515851a4e2a072048437aa3966940a205 /lib/libc/string/Makefile.inc | |
parent | 0d06f230fdb7a25662441eb63f670efe8845dc1c (diff) |
Add memrchr(3).
Obtained from: OpenBSD
Notes
Notes:
svn path=/head/; revision=178051
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 6d64ea5a08c9..9e5f0dab9b3b 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 |