summaryrefslogtreecommitdiff
path: root/lib/libc/regex/regcomp.c
diff options
context:
space:
mode:
authorMike Barcroft <mike@FreeBSD.org>2002-10-02 07:49:35 +0000
committerMike Barcroft <mike@FreeBSD.org>2002-10-02 07:49:35 +0000
commit4047df8d249eb931f75bb645dee9761946216fbd (patch)
treee9e33ee1e527e372ff8dc15fd1eb11b996ab444f /lib/libc/regex/regcomp.c
parenta4319fd03db836c56860bca0ac87e406850f6828 (diff)
Notes
Diffstat (limited to 'lib/libc/regex/regcomp.c')
-rw-r--r--lib/libc/regex/regcomp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/regex/regcomp.c b/lib/libc/regex/regcomp.c
index 91de8d760f2a..07c3955b2e4a 100644
--- a/lib/libc/regex/regcomp.c
+++ b/lib/libc/regex/regcomp.c
@@ -189,8 +189,8 @@ static int never = 0; /* for use in asserts; shuts lint up */
*/
int /* 0 success, otherwise REG_something */
regcomp(preg, pattern, cflags)
-regex_t *preg;
-const char *pattern;
+regex_t * __restrict preg;
+const char * __restrict pattern;
int cflags;
{
struct parse pa;