summaryrefslogtreecommitdiff
path: root/md5.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-03-07 04:36:52 +0000
committerMark Spencer <markster@digium.com>2004-03-07 04:36:52 +0000
commitd9359f8249a0687d66a482e01ea6b176a8ea96f9 (patch)
treea13c4842f86f30021c87acd410984ae134241207 /md5.c
parent146469ab19c02f9b7711e60e08637e0c3f4496b5 (diff)
Fix for endianness (bug #1174)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2363 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'md5.c')
-rwxr-xr-xmd5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/md5.c b/md5.c
index 543e8c581..f132ffb3a 100755
--- a/md5.c
+++ b/md5.c
@@ -1,6 +1,6 @@
/* MD5 checksum routines used for authentication. Not covered by GPL, but
in the public domain as per the copyright below */
-
+#include <endian.h>
# if __BYTE_ORDER == __BIG_ENDIAN || BYTE_ORDER == BIG_ENDIAN
# define HIGHFIRST 1
# endif