summaryrefslogtreecommitdiff
blob: f6c81e79925a9c3c2740f8ac5dbf00ac296aca55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff -ru snownews-1.5.7~/md5.h snownews-1.5.7/md5.h
--- snownews-1.5.7~/md5.h	2006-12-03 16:36:54.000000000 +0100
+++ snownews-1.5.7/md5.h	2006-12-03 16:47:23.000000000 +0100
@@ -31,11 +31,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];