summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1998-11-24 10:19:26 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1998-11-24 10:19:26 +0000
commitbbbacc38607bf18cbe60ce9346851ab00a6ead9b (patch)
tree56070bc6add90cf8d119abc2e464d6645ac92ad4
parentfd693488278f201b34a8ce0d081da54e99a8dca2 (diff)
Use our exact size types instead of short/long
-rw-r--r--sys/sys/md5k.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/md5k.h b/sys/sys/md5k.h
index 2ab25dedfd6..1b2ecc39d68 100644
--- a/sys/sys/md5k.h
+++ b/sys/sys/md5k.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: md5k.h,v 1.3 1997/05/29 19:15:44 deraadt Exp $ */
+/* $OpenBSD: md5k.h,v 1.4 1998/11/24 10:19:25 niklas Exp $ */
/* GLOBAL.H - RSAREF types and constants
*/
@@ -10,10 +10,10 @@
typedef void *POINTER;
/* UINT2 defines a two byte word */
-typedef unsigned short int UINT2;
+typedef u_int16_t UINT2;
/* UINT4 defines a four byte word */
-typedef unsigned long int UINT4;
+typedef u_int32_t UINT4;
/* MD5.H - header file for MD5C.C
*/