changeset 34230:1aff490f2518

Delay include of md5.h until after namespace cleaning.
author Jason Rumney <jasonr@gnu.org>
date Tue, 05 Dec 2000 22:51:52 +0000
parents 54b8aa09c4a9
children afdc28d28aaa
files src/md5.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/md5.c	Tue Dec 05 22:42:49 2000 +0000
+++ b/src/md5.c	Tue Dec 05 22:51:52 2000 +0000
@@ -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))