]> mj.ucw.cz Git - libucw.git/commitdiff
added #ifndef for header file
authorVladimir Jelen <vladimir.jelen@netcentrum.cz>
Thu, 30 Mar 2006 10:20:08 +0000 (12:20 +0200)
committerVladimir Jelen <vladimir.jelen@netcentrum.cz>
Thu, 30 Mar 2006 10:20:08 +0000 (12:20 +0200)
lib/bitarray.h

index 04ac582d04a3ecea43938c351081159383facf9c..724804154e58349b94bca592667edd2d0b200949 100644 (file)
@@ -7,6 +7,9 @@
  *     of the GNU Lesser General Public License.
  */
 
+#ifndef _UCW_BITARRAY_H
+#define _UCW_BITARRAY_H
+
 #include <string.h>
 
 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