summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniklas <niklas@openbsd.org>1998-11-24 10:19:25 +0000
committerniklas <niklas@openbsd.org>1998-11-24 10:19:25 +0000
commitfc5662c11a219f442f9338fbb8f872f723a17bc8 (patch)
treea0df23577add4484a7b556e7ffa16139ced7f7bb
parentUse our exact size types instead of char/long (diff)
downloadwireguard-openbsd-fc5662c11a219f442f9338fbb8f872f723a17bc8.tar.xz
wireguard-openbsd-fc5662c11a219f442f9338fbb8f872f723a17bc8.zip
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
*/