base: update include guards

This patch cleans up the include guards, assisted by the
tool/fix_include_ifndef script.
This commit is contained in:
Norman Feske
2016-01-20 20:52:51 +01:00
committed by Christian Helmuth
parent 6de763cb0b
commit 2e701f9afa
183 changed files with 588 additions and 475 deletions

View File

@ -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_ */

View File

@ -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_ */