4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-21 01:07:18 +08:00

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

View File

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