mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-02 19:46:09 +08:00
Fix no previous prototype for '_initialize_gnu_nat' [-Werror=missing-prototypes]
This patch fixes this error below by declaring _initialize_gnu_nat. ../../../git/gdb/gnu-nat.c:3447:1: error: no previous prototype for '_initialize_gnu_nat' [-Werror=missing-prototypes] gdb: 2014-01-07 Yao Qi <yao@codesourcery.com> * gnu-nat.c (_initialize_gnu_nat): Declare.
This commit is contained in:
@ -3439,6 +3439,10 @@ to the thread's initial suspend-count when gdb notices the threads."),
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* -Wmissing-prototypes */
|
||||
extern initialize_file_ftype _initialize_gnu_nat;
|
||||
|
||||
void
|
||||
_initialize_gnu_nat (void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user