aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2000-12-05 22:51:52 +0000
committerJason Rumney2000-12-05 22:51:52 +0000
commitc9fddc6f7898b662237b43d1a7e526d5f994e51c (patch)
treea26b00445e53b4df292cb012fd77b42b329b3e60 /src
parent2df852941160fbe9a7ac103668b673b75c7bec42 (diff)
downloademacs-c9fddc6f7898b662237b43d1a7e526d5f994e51c.tar.gz
emacs-c9fddc6f7898b662237b43d1a7e526d5f994e51c.zip
Delay include of md5.h until after namespace cleaning.
Diffstat (limited to 'src')
-rw-r--r--src/md5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/md5.c b/src/md5.c
index 177f16e9a5d..ea6dfc9cc03 100644
--- a/src/md5.c
+++ b/src/md5.c
@@ -35,8 +35,6 @@
35# endif 35# endif
36#endif 36#endif
37 37
38#include "md5.h"
39
40#ifdef _LIBC 38#ifdef _LIBC
41# include <endian.h> 39# include <endian.h>
42# if __BYTE_ORDER == __BIG_ENDIAN 40# if __BYTE_ORDER == __BIG_ENDIAN
@@ -53,6 +51,8 @@
53# define md5_buffer __md5_buffer 51# define md5_buffer __md5_buffer
54#endif 52#endif
55 53
54#include "md5.h"
55
56#ifdef WORDS_BIGENDIAN 56#ifdef WORDS_BIGENDIAN
57# define SWAP(n) \ 57# define SWAP(n) \
58 (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24)) 58 (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))