From: Vladimir Jelen Date: Thu, 30 Mar 2006 10:20:08 +0000 (+0200) Subject: added #ifndef for header file X-Git-Tag: holmes-import~650^2~10^2~4^2 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=c194796a1a16b7a67faca6f00e8058137d17ba77;p=libucw.git added #ifndef for header file --- diff --git a/lib/bitarray.h b/lib/bitarray.h index 04ac582d..72480415 100644 --- a/lib/bitarray.h +++ b/lib/bitarray.h @@ -7,6 +7,9 @@ * of the GNU Lesser General Public License. */ +#ifndef _UCW_BITARRAY_H +#define _UCW_BITARRAY_H + #include typedef u32 *bitarray_t; @@ -100,3 +103,5 @@ bit_array_test_and_clear(bitarray_t a, uns i) #define BIT_ARRAY_FISH_BITS_END \ while (0); \ } + +#endif