summaryrefslogtreecommitdiff
blob: e5747a6680aff3d69e453fa7818297388e05da71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=611203
https://bugs.gentoo.org/908998
--- a/md5.h
+++ b/md5.h
@@ -1,11 +1,8 @@
 #ifndef MD5_H
 #define MD5_H
 
-#ifdef __alpha
-typedef unsigned int uint32;
-#else
-typedef unsigned long uint32;
-#endif
+#include <stdint.h>
+typedef uint32_t uint32;
 
 struct MD5Context {
 	uint32 buf[4];