summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2016-01-14 21:45:18 +0000
committerchristos <christos@NetBSD.org>2016-01-14 21:45:18 +0000
commit842dbf2da0af9b76e3719705c62a0305ebbc660e (patch)
tree86fe826fd72b26d976e5b4e4f93b1ab696f0d58c /include
parent6fcf33b18cbf39d3ed8f5f2054d643e595806252 (diff)
rename to regnsub
Diffstat (limited to 'include')
-rw-r--r--include/regex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/regex.h b/include/regex.h
index 7e697322043..bb16015a698 100644
--- a/include/regex.h
+++ b/include/regex.h
@@ -1,4 +1,4 @@
-/* $NetBSD: regex.h,v 1.14 2016/01/14 20:42:03 christos Exp $ */
+/* $NetBSD: regex.h,v 1.15 2016/01/14 21:45:18 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -138,7 +138,7 @@ int regexec(const regex_t * __restrict,
const char * __restrict, size_t, regmatch_t [], int);
void regfree(regex_t *);
#ifdef _NETBSD_SOURCE
-ssize_t regsub(char *, size_t, const char *, const regmatch_t *, const char *);
+ssize_t regnsub(char *, size_t, const char *, const regmatch_t *, const char *);
ssize_t regasub(char **buf, const char *, const regmatch_t *, const char *);
#endif
__END_DECLS