From 1bf8a460e705604da8924fbb031227d675aef549 Mon Sep 17 00:00:00 2001 From: Meco Man <920369182@qq.com> Date: Sun, 31 Mar 2024 13:45:24 -0400 Subject: [PATCH] [finsh] remove finsh_syscall_lookup() function declaration --- components/finsh/finsh.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/finsh/finsh.h b/components/finsh/finsh.h index 4e9727df5b..9fe36fae5a 100644 --- a/components/finsh/finsh.h +++ b/components/finsh/finsh.h @@ -240,9 +240,6 @@ extern struct finsh_syscall *_syscall_table_begin, *_syscall_table_end; #define FINSH_NEXT_SYSCALL(index) index++ #endif -/* find out system call, which should be implemented in user program */ -struct finsh_syscall *finsh_syscall_lookup(const char *name); - #if !defined(RT_USING_POSIX_STDIO) && defined(RT_USING_DEVICE) void finsh_set_device(const char *device_name); #endif