diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-04-15 02:07:05 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-04-15 02:07:05 +0000 |
commit | a7036a011865784f08e1885899f12cf7e964bf8c (patch) | |
tree | b3c763a73737af8ed4a3c6bc77e3bfa4774b1e41 /lib | |
parent | 94d837c3aca3b545ce75eb97cb906a4962ceb611 (diff) |
regsub(3) should not be a link to regex(3) as it is not a POSIX regex
routine and is not described in regex(3).
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/regex/Makefile.inc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/regex/Makefile.inc b/lib/libc/regex/Makefile.inc index 0676e384190..9c448585b53 100644 --- a/lib/libc/regex/Makefile.inc +++ b/lib/libc/regex/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.5 1999/11/17 05:22:43 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.6 2005/04/15 02:07:04 millert Exp $ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 # regex sources @@ -10,5 +10,4 @@ SRCS+= regcomp.c regerror.c regexec.c regfree.c MAN+= regex.3 re_format.7 -MLINKS+=regex.3 regcomp.3 regex.3 regexec.3 regex.3 regerror.3 -MLINKS+=regex.3 regsub.3 regexec.3 regfree.3 +MLINKS+=regex.3 regcomp.3 regex.3 regexec.3 regex.3 regerror.3 regex.3 regfree.3 |