Browse Source

prototype mismatch for RMD160Update()

OPENBSD_2_6
millert 25 years ago
parent
commit
a65a15a2f0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/include/rmd160.h

+ 2
- 2
src/include/rmd160.h View File

@ -1,4 +1,4 @@
/* $OpenBSD: rmd160.h,v 1.3 1998/03/23 12:49:28 janjaap Exp $ */
/* $OpenBSD: rmd160.h,v 1.4 1999/08/16 09:59:04 millert Exp $ */
/********************************************************************\
*
@ -37,7 +37,7 @@ typedef struct {
void RMD160Init __P((RMD160_CTX *context));
void RMD160Transform __P((u_int32_t state[5], const u_int32_t block[16]));
void RMD160Update __P((RMD160_CTX *context, const u_char *data, u_int nbytes));
void RMD160Update __P((RMD160_CTX *context, const u_char *data, u_int32_t nbytes));
void RMD160Final __P((u_char digest[20], RMD160_CTX *context));
char *RMD160End __P((RMD160_CTX *, char *));
char *RMD160File __P((char *, char *));


Loading…
Cancel
Save