summaryrefslogtreecommitdiff
path: root/src/bitmap.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-02-21 23:26:29 +0100
committerRichard Braun <rbraun@sceen.net>2018-02-21 23:26:29 +0100
commit4936ed64ed91721229d5ef5965f80428759f9c3c (patch)
tree354aa4c28a1be25c23ab9d0faf06b1f669ad00ca /src/bitmap.h
parenta484ccff7df6300378a0a62238fa6082879a3888 (diff)
Don't use reserved identifiers
Diffstat (limited to 'src/bitmap.h')
-rw-r--r--src/bitmap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bitmap.h b/src/bitmap.h
index 7d5db63..b464228 100644
--- a/src/bitmap.h
+++ b/src/bitmap.h
@@ -29,8 +29,8 @@
* is the responsibility of the caller.
*/
-#ifndef _BITMAP_H
-#define _BITMAP_H
+#ifndef BITMAP_H
+#define BITMAP_H
#include <limits.h>
#include <stdatomic.h>
@@ -211,4 +211,4 @@ for ((bit) = 0; \
&& (((bit) = bitmap_find_next_zero(bm, nr_bits, bit)) != -1); \
(bit)++)
-#endif /* _BITMAP_H */
+#endif /* BITMAP_H */