Merge pull request #3634 from jch12138/master

添加static前缀,防止与用户自定函数冲突
This commit is contained in:
Bernard Xiong 2020-05-29 06:47:54 +08:00 committed by GitHub
commit 32714439f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ long hello(void)
} }
FINSH_FUNCTION_EXPORT(hello, say hello world); FINSH_FUNCTION_EXPORT(hello, say hello world);
long clear(void) static long clear(void)
{ {
rt_kprintf("\x1b[2J\x1b[H"); rt_kprintf("\x1b[2J\x1b[H");