Delay include of md5.h until after namespace cleaning.
authorJason Rumney <jasonr@gnu.org>
Tue, 5 Dec 2000 22:51:52 +0000 (22:51 +0000)
committerJason Rumney <jasonr@gnu.org>
Tue, 5 Dec 2000 22:51:52 +0000 (22:51 +0000)
src/md5.c

index 177f16e..ea6dfc9 100644 (file)
--- 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))