]> code.delx.au - gnu-emacs/blobdiff - src/md5.c
(Fgarbage_collect): Update call to truncate_undo_list.
[gnu-emacs] / src / md5.c
index 3f5013ddf3e127c53db2509672354d84fd823789..c8df5616fa9a807c92bc3f63869e82a9b2fd78ad 100644 (file)
--- a/src/md5.c
+++ b/src/md5.c
@@ -38,7 +38,7 @@
 #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 __ .  */
@@ -53,7 +53,7 @@
 
 #include "md5.h"
 
-#ifdef WORDS_BIGENDIAN
+#ifdef WORDS_BIG_ENDIAN
 # define SWAP(n)                                                       \
     (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))
 #else
@@ -441,3 +441,6 @@ md5_process_block (buffer, len, ctx)
   ctx->C = C;
   ctx->D = D;
 }
+
+/* arch-tag: 60084f04-b434-42cb-9d2b-e91df01f4325
+   (do not change this comment) */