From 2552728af832542a1760c0ea8e9107635188eba2 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Mon, 13 Jan 2020 14:03:13 -0500 Subject: [PATCH] gdbserver: include hostio.h in hostio-errno.c MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit ... so that the definition of hostio_last_error_from_errno in hostio-errno.c sees the declaration in hostio.h. Fix this error: CXX hostio-errno.o /home/smarchi/src/binutils-gdb/gdb/gdbserver/hostio-errno.c: In function ‘void hostio_last_error_from_errno(char*)’: /home/smarchi/src/binutils-gdb/gdb/gdbserver/hostio-errno.c:28:1: error: no previous declaration for ‘void hostio_last_error_from_errno(char*)’ [-Werror=missing-declarations] hostio_last_error_from_errno (char *buf) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ gdb/gdbserver/ChangeLog: * hostio-errno.c: Include hostio.h. Change-Id: I056308fd4ce12810d0a1b826c423bd0c7eeb8944 --- gdb/gdbserver/ChangeLog | 4 ++++ gdb/gdbserver/hostio-errno.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 730c53a2e8..ad176c7add 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2020-01-13 Simon Marchi + + * hostio-errno.c: Include hostio.h. + 2020-01-13 Simon Marchi * Makefile.in (%-generated.c): Make $(regdat_sh) a regular diff --git a/gdb/gdbserver/hostio-errno.c b/gdb/gdbserver/hostio-errno.c index a4c25e04a6..b75e64d212 100644 --- a/gdb/gdbserver/hostio-errno.c +++ b/gdb/gdbserver/hostio-errno.c @@ -22,6 +22,9 @@ on top of errno. */ #include "server.h" + +#include "hostio.h" + #include "gdbsupport/fileio.h" void -- 2.34.1