From: Mark Spencer Date: Sat, 29 Jun 2002 22:09:03 +0000 (+0000) Subject: Version 0.1.12 from FTP X-Git-Tag: 0.1.12~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80555f65879a600d55a209e2b4849bb63ee5b310;p=thirdparty%2Fasterisk.git Version 0.1.12 from FTP git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@475 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/md5.c b/md5.c index 74fe9014a0..543e8c5815 100755 --- a/md5.c +++ b/md5.c @@ -1,23 +1,9 @@ /* MD5 checksum routines used for authentication. Not covered by GPL, but in the public domain as per the copyright below */ -#ifdef FREEBSD -# include -#elif defined(LINUX) -# include -#elif defined(SOLARIS) -/* each solaris is different -- this won't work on 2.6 or 2.7 */ -# include -#endif -#if defined(__BYTE_ORDER) || defined(BYTE_ORDER) # if __BYTE_ORDER == __BIG_ENDIAN || BYTE_ORDER == BIG_ENDIAN # define HIGHFIRST 1 # endif -#else /* ! *BYTE_ORDER */ -# if defined(WORDS_BIGENDIAN) -# define HIGHFIRST 1 -# endif -#endif /* * This code implements the MD5 message-digest algorithm.