summaryrefslogtreecommitdiff
path: root/include/md5.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
commit6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch)
treeee423c619fad03813234b9362694a17f3a638f0b /include/md5.h
parentc707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff)
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'include/md5.h')
-rw-r--r--include/md5.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/md5.h b/include/md5.h
index 3d67a5cb5e5..8190b176186 100644
--- a/include/md5.h
+++ b/include/md5.h
@@ -1,5 +1,5 @@
/* MD5.H - header file for MD5C.C
- * $OpenBSD: md5.h,v 1.5 2000/03/28 17:35:08 millert Exp $
+ * $OpenBSD: md5.h,v 1.6 2002/02/16 21:27:17 millert Exp $
*/
/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
@@ -34,12 +34,12 @@ typedef struct MD5Context {
unsigned char buffer[64]; /* input buffer */
} MD5_CTX;
-void MD5Init __P((MD5_CTX *));
-void MD5Update __P((MD5_CTX *, const unsigned char *, size_t));
-void MD5Final __P((unsigned char [16], MD5_CTX *));
-void MD5Transform __P ((u_int32_t [4], const unsigned char [64]));
-char * MD5End __P((MD5_CTX *, char *));
-char * MD5File __P((char *, char *));
-char * MD5Data __P((const unsigned char *, size_t, char *));
+void MD5Init(MD5_CTX *);
+void MD5Update(MD5_CTX *, const unsigned char *, size_t);
+void MD5Final(unsigned char [16], MD5_CTX *);
+void MD5Transform(u_int32_t [4], const unsigned char [64]);
+char * MD5End(MD5_CTX *, char *);
+char * MD5File(char *, char *);
+char * MD5Data(const unsigned char *, size_t, char *);
#endif /* _MD5_H_ */