chiark / gitweb /
Support for 24-bit types.
[mLib] / crc32.h
diff --git a/crc32.h b/crc32.h
index 57899f8b442a1ec5a755c2adabeb34ce65eb73d7..2ecbdc07daa32f6784ee70cc0fe93cf1b481dce3 100644 (file)
--- a/crc32.h
+++ b/crc32.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: crc32.h,v 1.4 1999/06/01 09:47:22 mdw Exp $
+ * $Id: crc32.h,v 1.5 1999/12/10 23:42:04 mdw Exp $
  *
  * Calculating cyclic redundancy values (non-cryptographic!)
  *
@@ -30,6 +30,9 @@
 /*----- Revision history --------------------------------------------------*
  *
  * $Log: crc32.h,v $
+ * Revision 1.5  1999/12/10 23:42:04  mdw
+ * Change header file guard names.
+ *
  * Revision 1.4  1999/06/01 09:47:22  mdw
  * Make the return type of `crc32' a `uint32' now that we have `bits.h'.
  *
@@ -44,7 +47,7 @@
  *
  */
 
-#ifndef CRC32_H
+#ifndef MLIB_CRC32_H
 #define CRC32_h
 
 #ifdef __cplusplus
@@ -53,7 +56,7 @@
 
 /*----- Header files ------------------------------------------------------*/
 
-#ifndef BITS_H
+#ifndef MLIB_BITS_H
 #  include "bits.h"
 #endif