diff options
author | Ulf Möller <ulf@openssl.org> | 1999-04-26 18:43:10 +0200 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 1999-04-26 18:43:10 +0200 |
commit | a9be3af5ad4836f7e50f0546311ca90c717b861e (patch) | |
tree | f44f7f8c4497d85da4c5cbd08067479bb20ced95 /crypto/sha/sha1dgst.c | |
parent | Extensively changed the DEF file generator mkdef.pl to use a modified version (diff) | |
download | openssl-a9be3af5ad4836f7e50f0546311ca90c717b861e.tar.xz openssl-a9be3af5ad4836f7e50f0546311ca90c717b861e.zip |
Remove NOPROTO definitions and error code comments.
Diffstat (limited to 'crypto/sha/sha1dgst.c')
-rw-r--r-- | crypto/sha/sha1dgst.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/crypto/sha/sha1dgst.c b/crypto/sha/sha1dgst.c index 53b8d8cc30..18a492d0e6 100644 --- a/crypto/sha/sha1dgst.c +++ b/crypto/sha/sha1dgst.c @@ -80,22 +80,12 @@ char *SHA1_version="SHA1" OPENSSL_VERSION_PTEXT; #define K_40_59 0x8f1bbcdcUL #define K_60_79 0xca62c1d6UL -#ifndef NOPROTO # ifdef SHA1_ASM void sha1_block_x86(SHA_CTX *c, register SHA_LONG *p, int num); # define sha1_block sha1_block_x86 # else void sha1_block(SHA_CTX *c, register SHA_LONG *p, int num); # endif -#else -# ifdef SHA1_ASM - void sha1_block_x86(); -# define sha1_block sha1_block_x86 -# else - void sha1_block(); -# endif -#endif - #if defined(L_ENDIAN) && defined(SHA1_ASM) # define M_c2nl c2l |