diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-09-04 08:53:47 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-09-04 08:53:47 +0000 |
commit | a04f856b572380ab72c6e392ef24183bf7a16c65 (patch) | |
tree | 800e540f5c3f09ea0c0e30fcff4722c0eab5b6aa /os/hal/osal/rt | |
parent | 7d99d4c8c07408d8e1d1f61044eb037148b235c2 (diff) | |
download | ChibiOS-a04f856b572380ab72c6e392ef24183bf7a16c65.tar.gz ChibiOS-a04f856b572380ab72c6e392ef24183bf7a16c65.tar.bz2 ChibiOS-a04f856b572380ab72c6e392ef24183bf7a16c65.zip |
Removed _ from guard macros for consistency with other files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10551 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/osal/rt')
-rw-r--r-- | os/hal/osal/rt/osal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/osal/rt/osal.h b/os/hal/osal/rt/osal.h index e755a1c4f..397ff8acc 100644 --- a/os/hal/osal/rt/osal.h +++ b/os/hal/osal/rt/osal.h @@ -22,8 +22,8 @@ * @{
*/
-#ifndef _OSAL_H_
-#define _OSAL_H_
+#ifndef OSAL.H
+#define OSAL.H
#include <stddef.h>
#include <stdint.h>
@@ -936,6 +936,6 @@ static inline void osalMutexUnlock(mutex_t *mp) { #endif
}
-#endif /* _OSAL_H_ */
+#endif /* OSAL.H */
/** @} */
|