diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-06-09 16:27:06 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2024-06-09 16:36:11 +0300 |
commit | dc2056233ab4b16a84dcea43f683eaa0df0a720a (patch) | |
tree | 1c846583e9a458e31f4d4b37c60b5e2dfba5eb97 /contrib/tools/bison/lib/c-strncasecmp.c | |
parent | 9d3d6bc09cab4e631a4babeefd81a1d194867658 (diff) | |
download | ydb-dc2056233ab4b16a84dcea43f683eaa0df0a720a.tar.gz |
contrib/tools/bison: Revert some harmless patches
7ba13f28ff2841bd4468387feaa6536b3e372bde
Diffstat (limited to 'contrib/tools/bison/lib/c-strncasecmp.c')
-rw-r--r-- | contrib/tools/bison/lib/c-strncasecmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/tools/bison/lib/c-strncasecmp.c b/contrib/tools/bison/lib/c-strncasecmp.c index 053c70a73a..04404b00cd 100644 --- a/contrib/tools/bison/lib/c-strncasecmp.c +++ b/contrib/tools/bison/lib/c-strncasecmp.c @@ -26,8 +26,8 @@ int c_strncasecmp (const char *s1, const char *s2, size_t n) { - const unsigned char *p1 = (const unsigned char *) s1; - const unsigned char *p2 = (const unsigned char *) s2; + register const unsigned char *p1 = (const unsigned char *) s1; + register const unsigned char *p2 = (const unsigned char *) s2; unsigned char c1, c2; if (p1 == p2 || n == 0) |