summaryrefslogtreecommitdiff
path: root/kern/log2.h
diff options
context:
space:
mode:
Diffstat (limited to 'kern/log2.h')
-rw-r--r--kern/log2.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kern/log2.h b/kern/log2.h
index 1799b82..c59753f 100644
--- a/kern/log2.h
+++ b/kern/log2.h
@@ -18,8 +18,8 @@
* Integer base 2 logarithm operations.
*/
-#ifndef _KERN_LOG2_H
-#define _KERN_LOG2_H
+#ifndef KERN_LOG2_H
+#define KERN_LOG2_H
#include <assert.h>
#include <limits.h>
@@ -51,4 +51,4 @@ log2_order(unsigned long size)
return log2(size - 1) + 1;
}
-#endif /* _KERN_LOG2_H */
+#endif /* KERN_LOG2_H */