From 84739f48e8a38cc75760b334c8969b87ae661683 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 5 Jul 2022 12:42:41 +0100 Subject: [PATCH] fix for 64-bit! --- md5.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/md5.h b/md5.h index 245ecc9..2eb40aa 100644 --- a/md5.h +++ b/md5.h @@ -8,8 +8,10 @@ #ifndef MD5_H #define MD5_H +#include + #define UINT8 unsigned char -#define UINT32 unsigned long +#define UINT32 uint32_t struct MD5Context { UINT32 buf[4]; -- 2.30.2