diff options
author | zeising <zeising@FreeBSD.org> | 2013-03-06 19:59:42 +0000 |
---|---|---|
committer | zeising <zeising@FreeBSD.org> | 2013-03-06 19:59:42 +0000 |
commit | 128087cd6d32f10058a48ef2394e67d1182f0688 (patch) | |
tree | 004001ec41e20123f4f7ade962bc365bbe84495f | |
parent | eb7c9d2685c586dbc63824085f209d700276b116 (diff) | |
download | FreeBSD-src-128087cd6d32f10058a48ef2394e67d1182f0688.zip FreeBSD-src-128087cd6d32f10058a48ef2394e67d1182f0688.tar.gz |
Create a symlink from strchrnul.3 to strchr.3.
This was forgotten in the initial commit of strchrnul()
Approved by: theraven
-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 f98dc92..b997b7b 100644 --- a/lib/libc/string/Makefile.inc +++ b/lib/libc/string/Makefile.inc @@ -46,7 +46,8 @@ MLINKS+=strcasecmp.3 strncasecmp.3 \ strcasecmp.3 strcasecmp_l.3 \ strcasecmp.3 strncasecmp_l.3 MLINKS+=strcat.3 strncat.3 -MLINKS+=strchr.3 strrchr.3 +MLINKS+=strchr.3 strrchr.3 \ + strchr.3 strchrnul.3 MLINKS+=strcmp.3 strncmp.3 MLINKS+=strcoll.3 strcoll_l.3 MLINKS+=strcpy.3 stpcpy.3 \ |