diff options
author | Richard Braun <rbraun@sceen.net> | 2018-04-14 21:01:01 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2018-04-14 21:01:01 +0200 |
commit | 4033816a7ce4a24230f462b5c22183c1b45e24df (patch) | |
tree | d49d4e90a001d45a2e96d5ec0a00376bc81df501 /kern | |
parent | 8088131a4e0165938593577a9cfa87de7ffd22bc (diff) |
Fix left-over reserved identifiers
For some reason, commit be5b9d6ab9f7e7a81c367e4bb0823ba11f85940f didn't
take care of all reserved identifiers.
Diffstat (limited to 'kern')
-rw-r--r-- | kern/log2.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kern/log2.h b/kern/log2.h index 1799b825..c59753f2 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 */ |