diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-06-07 22:24:35 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-06-07 22:24:35 +0000 |
commit | 2e09a79ada1f6d92809a037d41895e3d9302ad59 (patch) | |
tree | 999c9d18279a7de289937116273ae4016356aa3a /libio/iofopncook.c | |
parent | 8e254d8e0d0820716e0ccf5f2b89c4fd1325f051 (diff) | |
download | glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.gz glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.xz glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.zip |
Avoid use of "register" as optimization hint.
Diffstat (limited to 'libio/iofopncook.c')
-rw-r--r-- | libio/iofopncook.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/iofopncook.c b/libio/iofopncook.c index 386704215d..34db0cb7f2 100644 --- a/libio/iofopncook.c +++ b/libio/iofopncook.c @@ -30,9 +30,9 @@ #include <shlib-compat.h> /* Prototyped for local functions. */ -static _IO_ssize_t _IO_cookie_read (register _IO_FILE* fp, void* buf, +static _IO_ssize_t _IO_cookie_read (_IO_FILE* fp, void* buf, _IO_ssize_t size); -static _IO_ssize_t _IO_cookie_write (register _IO_FILE* fp, +static _IO_ssize_t _IO_cookie_write (_IO_FILE* fp, const void* buf, _IO_ssize_t size); static _IO_off64_t _IO_cookie_seek (_IO_FILE *fp, _IO_off64_t offset, int dir); static _IO_off64_t _IO_cookie_seekoff (_IO_FILE *fp, _IO_off64_t offset, |