mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
Avoid use of "register" as optimization hint.
This commit is contained in:
@@ -72,7 +72,7 @@
|
||||
#define outchar(ch) \
|
||||
do \
|
||||
{ \
|
||||
register const int outc = (ch); \
|
||||
const int outc = (ch); \
|
||||
if (putc (outc, fp) == EOF) \
|
||||
{ \
|
||||
if (buffer_malloced) \
|
||||
@@ -85,7 +85,7 @@
|
||||
#define PRINT(ptr, wptr, len) \
|
||||
do \
|
||||
{ \
|
||||
register size_t outlen = (len); \
|
||||
size_t outlen = (len); \
|
||||
if (len > 20) \
|
||||
{ \
|
||||
if (PUT (fp, wide ? (const char *) wptr : ptr, outlen) != outlen) \
|
||||
|
Reference in New Issue
Block a user