From 58920b5be048726fca38e4e6ddcaa02ae6d9c1b8 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sun, 12 Jan 2020 15:11:07 -0500 Subject: [PATCH] gdb: include gdb_wait.h in gdb_wait.c When building for mingw with -Wmissing-declarations, I get: CXX gdbsupport/gdb_wait.o /binutils-gdb/gdb/gdbsupport/gdb_wait.c:52:1: error: no previous declaration for 'int windows_status_to_termsig(long unsigned int)' [-Wer ror=missing-declarations] 52 | windows_status_to_termsig (unsigned long status) | ^~~~~~~~~~~~~~~~~~~~~~~~~ Make gdb_wait.c include gdb_wait.h to fix it. gdb/ChangeLog: * gdbsupport/gdb_wait.c: Include gdb_wait.h. --- gdb/ChangeLog | 4 ++++ gdb/gdbsupport/gdb_wait.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 980114919d..da45e7bce6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-01-12 Simon Marchi + + * gdbsupport/gdb_wait.c: Include gdb_wait.h. + 2020-01-12 Pedro Alves * bsd-kvm.c (bsd_kvm_target::close): Call exit_inferior_silent diff --git a/gdb/gdbsupport/gdb_wait.c b/gdb/gdbsupport/gdb_wait.c index 6facc48495..32139949c6 100644 --- a/gdb/gdbsupport/gdb_wait.c +++ b/gdb/gdbsupport/gdb_wait.c @@ -19,6 +19,8 @@ #include "common-defs.h" +#include "gdb_wait.h" + #ifdef __MINGW32__ /* The underlying idea is that when a Windows program is terminated by -- 2.34.1