summaryrefslogtreecommitdiff
path: root/src/pcre2grep.c
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2016-11-03 17:35:59 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2016-11-03 17:35:59 +0000
commit68b2b4cdf1f220e3b216a9c899eb9172f752b7bb (patch)
treeec07102cd6294eda9115a29af4dfcd443ba24894 /src/pcre2grep.c
parent0242f0bc2b4e74504f34909112c3bd8b78437831 (diff)
downloadpcre2-68b2b4cdf1f220e3b216a9c899eb9172f752b7bb.tar.gz
Remove all "register" declarations.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@591 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'src/pcre2grep.c')
-rw-r--r--src/pcre2grep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pcre2grep.c b/src/pcre2grep.c
index a7e1ddb..0c9b8c6 100644
--- a/src/pcre2grep.c
+++ b/src/pcre2grep.c
@@ -1272,7 +1272,7 @@ switch(endlinetype)
while (p < endptr)
{
int extra = 0;
- register int c = *((unsigned char *)p);
+ int c = *((unsigned char *)p);
if (utf && c >= 0xc0)
{
@@ -1316,7 +1316,7 @@ switch(endlinetype)
while (p < endptr)
{
int extra = 0;
- register int c = *((unsigned char *)p);
+ int c = *((unsigned char *)p);
if (utf && c >= 0xc0)
{
@@ -1418,7 +1418,7 @@ switch(endlinetype)
while (p > startptr)
{
- register unsigned int c;
+ unsigned int c;
char *pp = p - 1;
if (utf)