Skip to content

Commit 9d6870f

Browse files
committed
[config] Fix #include directive issue
1 parent 6de625b commit 9d6870f

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

src/components/finsh/cmd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
* Provide protection for the "first layer of objects" when list_*
3232
*/
3333

34-
#include "include\rthw.h"
35-
#include "include\rtthread.h"
34+
#include "include/rthw.h"
35+
#include "include/rtthread.h"
3636

3737
#ifdef RT_USING_FINSH
3838

src/components/finsh/finsh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#ifndef __FINSH_H__
1111
#define __FINSH_H__
1212

13-
#include "include\rtthread.h"
13+
#include "include/rtthread.h"
1414
#include "finsh_api.h"
1515

1616
/* -- the beginning of option -- */

src/components/finsh/msh.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* 2014-01-03 Bernard msh can execute module.
1010
* 2017-07-19 Aubr.Cool limit argc to RT_FINSH_ARG_MAX
1111
*/
12-
#include "include\rtthread.h"
12+
#include "include/rtthread.h"
1313

1414
#ifdef FINSH_USING_MSH
1515

src/components/finsh/msh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#ifndef __M_SHELL__
1212
#define __M_SHELL__
1313

14-
#include "include\rtthread.h"
14+
#include "include/rtthread.h"
1515

1616
rt_bool_t msh_is_used(void);
1717
int msh_exec(char *cmd, rt_size_t length);

src/components/finsh/msh_cmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* 2015-08-28 Bernard Add mkfs command.
1010
*/
1111

12-
#include "include\rtthread.h"
12+
#include "include/rtthread.h"
1313

1414
#ifdef FINSH_USING_MSH
1515

src/components/finsh/msh_file.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* 2015-09-25 Bernard the first verion for FinSH
99
*/
1010

11-
#include "include\rtthread.h"
11+
#include "include/rtthread.h"
1212

1313
#if defined(FINSH_USING_MSH) && defined(RT_USING_DFS)
1414

src/components/finsh/shell.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* 2018-07-02 aozima add custome prompt support.
1919
*/
2020

21-
#include "include\rthw.h"
21+
#include "include/rthw.h"
2222

2323
#ifdef RT_USING_FINSH
2424

src/components/finsh/shell.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#ifndef __SHELL_H__
1212
#define __SHELL_H__
1313

14-
#include "include\rtthread.h"
14+
#include "include/rtthread.h"
1515
#include "finsh.h"
1616

1717
#ifndef FINSH_THREAD_PRIORITY

src/components/finsh/symbol.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* 2010-03-22 Bernard first version
99
*/
1010

11-
#include "include\rtthread.h"
11+
#include "include/rtthread.h"
1212

1313
#ifdef RT_USING_FINSH
1414

src/include/rtthread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ void rt_assert_handler(const char *ex, const char *func, rt_size_t line);
540540
#endif /* RT_DEBUG */
541541

542542
#ifdef RT_USING_FINSH
543-
#include "components\finsh\finsh_api.h"
543+
#include "components/finsh/finsh_api.h"
544544
#endif
545545

546546
/**@}*/

0 commit comments

Comments
 (0)