diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-03-23 18:43:19 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-03-23 18:43:19 +0000 |
commit | 830278dcd222180f3a4e6c5f288ea9f05afc52ae (patch) | |
tree | e707dbd955495fc6fca7fc8fa68e9c1d08e88c6c /os/common/ports/e200/compilers | |
parent | 4edc5aeca7251e69dfa772dfdd5b2e012375a809 (diff) | |
download | ChibiOS-830278dcd222180f3a4e6c5f288ea9f05afc52ae.tar.gz ChibiOS-830278dcd222180f3a4e6c5f288ea9f05afc52ae.tar.bz2 ChibiOS-830278dcd222180f3a4e6c5f288ea9f05afc52ae.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9153 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common/ports/e200/compilers')
-rw-r--r-- | os/common/ports/e200/compilers/CW/chtypes.h | 6 | ||||
-rw-r--r-- | os/common/ports/e200/compilers/GCC/chtypes.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/os/common/ports/e200/compilers/CW/chtypes.h b/os/common/ports/e200/compilers/CW/chtypes.h index 78b000424..4976da817 100644 --- a/os/common/ports/e200/compilers/CW/chtypes.h +++ b/os/common/ports/e200/compilers/CW/chtypes.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHTYPES_H_
-#define _CHTYPES_H_
+#ifndef CHTYPES_H
+#define CHTYPES_H
#include <stddef.h>
#include <stdint.h>
@@ -88,6 +88,6 @@ typedef uint32_t ucnt_t; /**< Generic unsigned counter. */ */
#define PORT_THD_FUNCTION(tname, arg) void tname(void *arg)
-#endif /* _CHTYPES_H_ */
+#endif /* CHTYPES_H */
/** @} */
diff --git a/os/common/ports/e200/compilers/GCC/chtypes.h b/os/common/ports/e200/compilers/GCC/chtypes.h index 119c532e2..6ee1962b1 100644 --- a/os/common/ports/e200/compilers/GCC/chtypes.h +++ b/os/common/ports/e200/compilers/GCC/chtypes.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHTYPES_H_
-#define _CHTYPES_H_
+#ifndef CHTYPES_H
+#define CHTYPES_H
#include <stddef.h>
#include <stdint.h>
@@ -88,6 +88,6 @@ typedef uint32_t ucnt_t; /**< Generic unsigned counter. */ */
#define PORT_THD_FUNCTION(tname, arg) void tname(void *arg)
-#endif /* _CHTYPES_H_ */
+#endif /* CHTYPES_H */
/** @} */
|