summaryrefslogtreecommitdiff
path: root/src/md5.c
diff options
context:
space:
mode:
authorJason Rumney <jasonr@gnu.org>2000-12-05 22:51:52 +0000
committerJason Rumney <jasonr@gnu.org>2000-12-05 22:51:52 +0000
commitc9fddc6f7898b662237b43d1a7e526d5f994e51c (patch)
treea26b00445e53b4df292cb012fd77b42b329b3e60 /src/md5.c
parent2df852941160fbe9a7ac103668b673b75c7bec42 (diff)
downloademacs-c9fddc6f7898b662237b43d1a7e526d5f994e51c.tar.gz
Delay include of md5.h until after namespace cleaning.
Diffstat (limited to 'src/md5.c')
-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 @@
# endif
#endif
-#include "md5.h"
-
#ifdef _LIBC
# include <endian.h>
# if __BYTE_ORDER == __BIG_ENDIAN
@@ -53,6 +51,8 @@
# define md5_buffer __md5_buffer
#endif
+#include "md5.h"
+
#ifdef WORDS_BIGENDIAN
# define SWAP(n) \
(((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))