it instead of WORDS_BIGENDIAN. Caller changed.
#ifdef _LIBC
# include <endian.h>
# if __BYTE_ORDER == __BIG_ENDIAN
-# define WORDS_BIGENDIAN 1
+# define WORDS_BIG_ENDIAN 1
# endif
/* We need to keep the namespace clean so define the MD5 function
protected using leading __ . */
#include "md5.h"
-#ifdef WORDS_BIGENDIAN
+#ifdef WORDS_BIG_ENDIAN
# define SWAP(n) \
(((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))
#else