aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/md5/md5.h
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-26 16:43:10 +0000
committerUlf Möller <ulf@openssl.org>1999-04-26 16:43:10 +0000
commita9be3af5ad4836f7e50f0546311ca90c717b861e (patch)
treef44f7f8c4497d85da4c5cbd08067479bb20ced95 /crypto/md5/md5.h
parent47339f6179fbefafc793c10b0411ed0365497d65 (diff)
downloadopenssl-a9be3af5ad4836f7e50f0546311ca90c717b861e.tar.gz
Remove NOPROTO definitions and error code comments.
Diffstat (limited to 'crypto/md5/md5.h')
-rw-r--r--crypto/md5/md5.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/crypto/md5/md5.h b/crypto/md5/md5.h
index 93e65731a3..fc767872ed 100644
--- a/crypto/md5/md5.h
+++ b/crypto/md5/md5.h
@@ -78,20 +78,11 @@ typedef struct MD5state_st
int num;
} MD5_CTX;
-#ifndef NOPROTO
void MD5_Init(MD5_CTX *c);
void MD5_Update(MD5_CTX *c, const void *data, unsigned long len);
void MD5_Final(unsigned char *md, MD5_CTX *c);
unsigned char *MD5(unsigned char *d, unsigned long n, unsigned char *md);
void MD5_Transform(MD5_CTX *c, unsigned char *b);
-#else
-void MD5_Init();
-void MD5_Update();
-void MD5_Final();
-unsigned char *MD5();
-void MD5_Transform();
-#endif
-
#ifdef __cplusplus
}
#endif