diff options
author | obrien <obrien@FreeBSD.org> | 2002-03-21 23:39:28 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-03-21 23:39:28 +0000 |
commit | 084b4588f24346b3d369eaf49193461c380e8521 (patch) | |
tree | 1cbfa8bb28a9bf0d0b93ca61ac5323ef95e4c7f7 /lib/libmd/sha0c.c | |
parent | 454845084c112df969ca14adced4fd6c1d7305b6 (diff) | |
download | FreeBSD-src-084b4588f24346b3d369eaf49193461c380e8521.zip FreeBSD-src-084b4588f24346b3d369eaf49193461c380e8521.tar.gz |
Remove 'register' keyword.
Diffstat (limited to 'lib/libmd/sha0c.c')
-rw-r--r-- | lib/libmd/sha0c.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libmd/sha0c.c b/lib/libmd/sha0c.c index 6d115ea..47ea62b 100644 --- a/lib/libmd/sha0c.c +++ b/lib/libmd/sha0c.c @@ -120,7 +120,7 @@ SHA_CTX *c; const unsigned char *data; size_t len; { - register u_int32_t *p; + u_int32_t *p; int ew,ec,sw,sc; u_int32_t l; @@ -290,7 +290,7 @@ SHA_CTX *c; const u_int32_t *W; int num; { - register u_int32_t A,B,C,D,E,T; + u_int32_t A,B,C,D,E,T; u_int32_t X[16]; A=c->h0; @@ -408,9 +408,9 @@ void SHA_Final(md, c) unsigned char *md; SHA_CTX *c; { - register int i,j; - register u_int32_t l; - register u_int32_t *p; + int i,j; + u_int32_t l; + u_int32_t *p; static unsigned char end[4]={0x80,0x00,0x00,0x00}; unsigned char *cp=end; |