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 /os/various/shell | |
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 'os/various/shell')
-rw-r--r-- | os/various/shell/shell.h | 6 | ||||
-rw-r--r-- | os/various/shell/shell_cmd.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/os/various/shell/shell.h b/os/various/shell/shell.h index 28701c599..5d026dd05 100644 --- a/os/various/shell/shell.h +++ b/os/various/shell/shell.h @@ -22,8 +22,8 @@ * @{
*/
-#ifndef _SHELL_H_
-#define _SHELL_H_
+#ifndef SHELL_H
+#define SHELL_H
/*===========================================================================*/
/* Module constants. */
@@ -105,6 +105,6 @@ extern "C" { /* Module inline functions. */
/*===========================================================================*/
-#endif /* _SHELL_H_ */
+#endif /* SHELL_H */
/** @} */
diff --git a/os/various/shell/shell_cmd.h b/os/various/shell/shell_cmd.h index 1f9ad64b1..4eac1a122 100644 --- a/os/various/shell/shell_cmd.h +++ b/os/various/shell/shell_cmd.h @@ -22,8 +22,8 @@ * @{
*/
-#ifndef _SHELLCMD_H_
-#define _SHELLCMD_H_
+#ifndef SHELLCMD_H
+#define SHELLCMD_H
/*===========================================================================*/
/* Module constants. */
@@ -109,6 +109,6 @@ extern "C" { /* Module inline functions. */
/*===========================================================================*/
-#endif /* _SHELLCMD_H_ */
+#endif /* SHELLCMD_H */
/** @} */
|