X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/7b4b46a700b5eb25706b5945d82bcb613ea67e05..0ae5e7b3fd62e0251d21f3abbc187f4c7585f85f:/crc32.h diff --git a/crc32.h b/crc32.h index 57899f8..2b36e5f 100644 --- 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!) * @@ -30,6 +30,12 @@ /*----- 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