From: Peter Jones Date: Wed, 21 Feb 2018 20:20:23 +0000 (-0500) Subject: aout.h: Fix missing include. X-Git-Url: https://iam.tj/gitweb/gitweb.cgi?p=grub.git;a=commitdiff_plain;h=e1ead149efadf420fe16d2ce0b109a6982b8a5f6 aout.h: Fix missing include. grub_aout_load() has a grub_file_t parameter, and depending on what order includes land in, it's sometimes not defined. This patch explicitly adds file.h to aout.h so that it will always be defined. Signed-off-by: Peter Jones Reviewed-by: Daniel Kiper --- diff --git a/include/grub/aout.h b/include/grub/aout.h index 10d7dde61..c8c1d94ec 100644 --- a/include/grub/aout.h +++ b/include/grub/aout.h @@ -52,6 +52,7 @@ #define GRUB_AOUT_HEADER 1 #include +#include struct grub_aout32_header {