From f0745f8757094a41367eac0fbcbc45bbbcf91d0d Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Mon, 23 May 2022 11:47:35 +0000 Subject: [PATCH] - fixed mutual inclusion git-svn-id: http://moon:8086/svn/software/trunk/libsrc/crc@864 b431acfa-c32f-4a4a-93f1-934dc6c82436 --- crc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crc.h b/crc.h index f2086d6..3cfc83b 100755 --- a/crc.h +++ b/crc.h @@ -1,6 +1,6 @@ // -------------------------------------------------------------- -#ifndef CRC_H -#define CRC_H +#ifndef _CRC_H_ +#define _CRC_H_ #include // -------------------------------------------------------------- @@ -16,4 +16,4 @@ uint16_t Crc16(uint16_t poly, uint16_t crc, uint8_t *pBuf, uint32_t len); #endif // __cplusplus // -------------------------------------------------------------- -#endif // CRC_H +#endif // _CRC_H_