Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-20 20:25:50 +0400
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-20 20:25:50 +0400
commitea9d80921f04e6f4f2f97f0984f002a98acd92b0 (patch)
tree5258d827c2b2459da08583d6489b18c3323d8e13 /newlib/libc/posix/regex.3
parenta2c4eac5d02f3d35dc6c450b9f0bb6e71ce916cc (diff)
2013-11-20 Chirayu Desai <chirayudesai1@gmail.com>
* libc/include/regex.h, libc/posix/regcomp.c, libc/posix/regerror.c, libc/posix/regex.3 libc/posix/regexec.c: Add restrict keyword.
Diffstat (limited to 'newlib/libc/posix/regex.3')
-rw-r--r--newlib/libc/posix/regex.310
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/posix/regex.3 b/newlib/libc/posix/regex.3
index d87164177..d0b45a8e7 100644
--- a/newlib/libc/posix/regex.3
+++ b/newlib/libc/posix/regex.3
@@ -51,16 +51,16 @@
.In sys/types.h
.In regex.h
.Ft int
-.Fn regcomp "regex_t *preg" "const char *pattern" "int cflags"
+.Fn regcomp "regex_t *restrict preg" "const char *_restrictpattern" "int cflags"
.Ft int
.Fo regexec
-.Fa "const regex_t *preg" "const char *string"
-.Fa "size_t nmatch" "regmatch_t pmatch[]" "int eflags"
+.Fa "const regex_t *_restrict preg" "const char *_restrict string"
+.Fa "size_t nmatch" "regmatch_t pmatch[_restrict]" "int eflags"
.Fc
.Ft size_t
.Fo regerror
-.Fa "int errcode" "const regex_t *preg"
-.Fa "char *errbuf" "size_t errbuf_size"
+.Fa "int errcode" "const regex_t *_restrict preg"
+.Fa "char *_restrict errbuf" "size_t errbuf_size"
.Fc
.Ft void
.Fn regfree "regex_t *preg"