diff options
author | Richard Braun <rbraun@sceen.net> | 2018-02-24 05:13:39 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2018-02-24 06:07:24 +0100 |
commit | be5b9d6ab9f7e7a81c367e4bb0823ba11f85940f (patch) | |
tree | 3d8a70e30c8073e210c637fcca2185aa0f71f179 /kern/mutex/mutex_plain_i.h | |
parent | 64830974a086e53ea1bc5e628e8955db83ff797a (diff) |
Don't use reserved identifiers
Diffstat (limited to 'kern/mutex/mutex_plain_i.h')
-rw-r--r-- | kern/mutex/mutex_plain_i.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kern/mutex/mutex_plain_i.h b/kern/mutex/mutex_plain_i.h index 74def89e..0c58174b 100644 --- a/kern/mutex/mutex_plain_i.h +++ b/kern/mutex/mutex_plain_i.h @@ -15,10 +15,10 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef _KERN_MUTEX_PLAIN_I_H -#define _KERN_MUTEX_PLAIN_I_H +#ifndef KERN_MUTEX_PLAIN_I_H +#define KERN_MUTEX_PLAIN_I_H -#ifndef _KERN_MUTEX_H +#ifndef KERN_MUTEX_H #error "don't include <kern/mutex/mutex_plain_i.h> directly," \ " use <kern/mutex.h> instead" #endif @@ -137,4 +137,4 @@ INIT_OP_DECLARE(mutex_plain_bootstrap); #define mutex_impl_setup mutex_plain_setup INIT_OP_DECLARE(mutex_plain_setup); -#endif /* _KERN_MUTEX_PLAIN_I_H */ +#endif /* KERN_MUTEX_PLAIN_I_H */ |