Add include-guards

This commit is contained in:
Baptiste Wicht 2016-09-22 17:46:44 +02:00
parent 467bbcf1b7
commit c36eec2986

View File

@ -5,6 +5,9 @@
// http://www.opensource.org/licenses/MIT)
//=======================================================================
#ifndef ARCH_H
#define ARCH_H
#include <types.hpp>
namespace arch {
@ -31,3 +34,5 @@ inline bool interrupts_enabled(){
}
} //enf of arch namespace
#endif