diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-02 10:01:41 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-02 10:01:41 +0000 |
commit | 9ab3be39cbb99b811b29b56aad107298828fd52c (patch) | |
tree | e50e9d9f8ce13d4a483d8cd7812c9d99c681c274 /testhal | |
parent | 50b0e64179d55478206b7a3a6fc8e852d12d373d (diff) | |
download | ChibiOS-9ab3be39cbb99b811b29b56aad107298828fd52c.tar.gz ChibiOS-9ab3be39cbb99b811b29b56aad107298828fd52c.tar.bz2 ChibiOS-9ab3be39cbb99b811b29b56aad107298828fd52c.zip |
Fixed more header guards.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9220 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-rw-r--r-- | testhal/common/irq_storm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testhal/common/irq_storm.h b/testhal/common/irq_storm.h index 73e2e10a2..7dd96ce5e 100644 --- a/testhal/common/irq_storm.h +++ b/testhal/common/irq_storm.h @@ -22,8 +22,8 @@ * @{
*/
-#ifndef _IRQ_STORM_H_
-#define _IRQ_STORM_H_
+#ifndef IRQ_STORM_H
+#define IRQ_STORM_H
/*===========================================================================*/
/* Module constants. */
@@ -161,6 +161,6 @@ extern "C" { /* Module inline functions. */
/*===========================================================================*/
-#endif /* _IRQ_STORM_H_ */
+#endif /* IRQ_STORM_H */
/** @} */
|