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 /include/rpc/auth_des.h | |
parent | 8e254d8e0d0820716e0ccf5f2b89c4fd1325f051 (diff) | |
download | glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.gz glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.bz2 glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.zip |
Avoid use of "register" as optimization hint.
Diffstat (limited to 'include/rpc/auth_des.h')
-rw-r--r-- | include/rpc/auth_des.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/rpc/auth_des.h b/include/rpc/auth_des.h index c14f069668..0e9db1a226 100644 --- a/include/rpc/auth_des.h +++ b/include/rpc/auth_des.h @@ -7,12 +7,12 @@ libc_hidden_proto (getsecretkey) libc_hidden_proto (rtime) extern bool_t xdr_authdes_cred (XDR *xdrs, struct authdes_cred *cred); -extern bool_t xdr_authdes_verf (register XDR *xdrs, - register struct authdes_verf *verf); +extern bool_t xdr_authdes_verf (XDR *xdrs, + struct authdes_verf *verf); struct svc_req; struct rpc_msg; -extern enum auth_stat _svcauth_des (register struct svc_req *rqst, - register struct rpc_msg *msg); +extern enum auth_stat _svcauth_des (struct svc_req *rqst, + struct rpc_msg *msg); #define DECLARE_NSS_PROTOTYPES(service) \ |