From d9359f8249a0687d66a482e01ea6b176a8ea96f9 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Sun, 7 Mar 2004 04:36:52 +0000 Subject: [PATCH] Fix for endianness (bug #1174) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2363 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md5.c b/md5.c index 543e8c5815..f132ffb3a2 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 # if __BYTE_ORDER == __BIG_ENDIAN || BYTE_ORDER == BIG_ENDIAN # define HIGHFIRST 1 # endif