mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Avoid use of "register" as optimization hint.
This commit is contained in:
@ -29,8 +29,8 @@ __stpcpy_chk (dest, src, destlen)
|
||||
const char *src;
|
||||
size_t destlen;
|
||||
{
|
||||
register char *d = dest;
|
||||
register const char *s = src;
|
||||
char *d = dest;
|
||||
const char *s = src;
|
||||
|
||||
do
|
||||
{
|
||||
|
Reference in New Issue
Block a user