mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-15 21:58:24 +00:00
base: update include guards
This patch cleans up the include guards, assisted by the tool/fix_include_ifndef script.
This commit is contained in:
committed by
Christian Helmuth
parent
6de763cb0b
commit
2e701f9afa
@ -11,6 +11,9 @@
|
||||
* under the terms of the GNU General Public License version 2.
|
||||
*/
|
||||
|
||||
#ifndef _INCLUDE__BASE__INTERNAL__CORE_CONSOLE_H_
|
||||
#define _INCLUDE__BASE__INTERNAL__CORE_CONSOLE_H_
|
||||
|
||||
/* Fiasco includes */
|
||||
namespace Fiasco {
|
||||
#include <l4/sys/kdebug.h>
|
||||
@ -28,3 +31,5 @@ namespace Genode {
|
||||
void _out_char(char c) { Fiasco::outchar(c); }
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* _INCLUDE__BASE__INTERNAL__CORE_CONSOLE_H_ */
|
||||
|
@ -15,8 +15,8 @@
|
||||
* under the terms of the GNU General Public License version 2.
|
||||
*/
|
||||
|
||||
#ifndef _INCLUDE__BASE__LOCK__LOCK_HELPER_H_
|
||||
#define _INCLUDE__BASE__LOCK__LOCK_HELPER_H_
|
||||
#ifndef _INCLUDE__BASE__INTERNAL__LOCK_HELPER_H_
|
||||
#define _INCLUDE__BASE__INTERNAL__LOCK_HELPER_H_
|
||||
|
||||
/* Genode includes */
|
||||
#include <base/native_types.h>
|
||||
@ -88,4 +88,4 @@ static void thread_stop_myself()
|
||||
l4_irq_receive(irq, L4_IPC_NEVER);
|
||||
}
|
||||
|
||||
#endif /* _INCLUDE__BASE__LOCK__LOCK_HELPER_H_ */
|
||||
#endif /* _INCLUDE__BASE__INTERNAL__LOCK_HELPER_H_ */
|
||||
|
Reference in New Issue
Block a user