chiark / gitweb /
Ignore more manpages
[mLib] / crc32.h
diff --git a/crc32.h b/crc32.h
index 57899f8b442a1ec5a755c2adabeb34ce65eb73d7..2b36e5f4f27df965e0d9949095fcc41592eef81c 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.6 2000/07/02 22:20:42 mdw Exp $
  *
  * Calculating cyclic redundancy values (non-cryptographic!)
  *
 /*----- Revision history --------------------------------------------------*
  *
  * $Log: crc32.h,v $
+ * Revision 1.6  2000/07/02 22:20:42  mdw
+ * Fix constant name.
+ *
+ * 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,8 +50,8 @@
  *
  */
 
-#ifndef CRC32_H
-#define CRC32_h
+#ifndef MLIB_CRC32_H
+#define MLIB_CRC32_H
 
 #ifdef __cplusplus
   extern "C" {
@@ -53,7 +59,7 @@
 
 /*----- Header files ------------------------------------------------------*/
 
-#ifndef BITS_H
+#ifndef MLIB_BITS_H
 #  include "bits.h"
 #endif