From d0eb2625bff1387744304bdc70ec0a85a20b8a3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Chigot?= Date: Wed, 13 Mar 2024 11:05:01 +0100 Subject: bfd: add missing include bdfio.c is defining bfd_get_current_time which is returning a time_t. This type is defined in time.h and thus, must be included in bfd main header to avoid undefined type when include bfd.h. Note that most of the time, is pulled by already included in bfd.h. That's why it went unnoticed. --- bfd/bfd-in.h | 1 + 1 file changed, 1 insertion(+) (limited to 'bfd/bfd-in.h') diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h index 0ff1e2f..04e65aa 100644 --- a/bfd/bfd-in.h +++ b/bfd/bfd-in.h @@ -36,6 +36,7 @@ extern "C" { #include "symcat.h" #include #include +#include #include "diagnostics.h" #include #include -- cgit v1.1