From 8de4a6846a5d99994b80a82afbab697fbdd096f7 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Thu, 6 Apr 2006 23:33:19 +0200 Subject: [PATCH] Added a guard against double inclusion (out-of-order merge from v3.8). --- lib/bitarray.h | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.39.5