From b34d5888268e573768edeeedc040cb75c800430f Mon Sep 17 00:00:00 2001 From: Thomas BERNARD Date: Fri, 4 Jan 2019 20:06:02 +0100 Subject: [PATCH] fix bitcount.h include guard --- src/bitcount.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bitcount.h b/src/bitcount.h index b1236fb0..e2253cd7 100644 --- a/src/bitcount.h +++ b/src/bitcount.h @@ -25,7 +25,7 @@ ////////////////////////////////////////////////////////////////////////////// #ifndef BITCOUNT_H__ -#define BITCOINT_H__ +#define BITCOUNT_H__ #if defined(__GNUC__) && __GNUC__ > 2 /* use GCC built in's */ @@ -80,4 +80,4 @@ static int count_trailing_zeros(unsigned int value) #endif #endif -#endif \ No newline at end of file +#endif